mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 01:11:20 +03:00
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
import { BaseContext } from 'src/sql-tools/contexts/base-context';
|
|
import { SchemaFromDatabaseOptions } from 'src/sql-tools/types';
|
|
|
|
export class ReaderContext extends BaseContext {
|
|
constructor(public options: SchemaFromDatabaseOptions) {
|
|
super(options);
|
|
}
|
|
}
|