mirror of
https://github.com/immich-app/immich.git
synced 2026-02-09 11:20:00 +03:00
* move markers and style to dedicated map endpoint * chore: open api * chore: clean up repos --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
import { SystemMetadata } from 'src/entities/system-metadata.entity';
|
|
|
|
export const ISystemMetadataRepository = 'ISystemMetadataRepository';
|
|
|
|
export interface ISystemMetadataRepository {
|
|
get<T extends keyof SystemMetadata>(key: T): Promise<SystemMetadata[T] | null>;
|
|
set<T extends keyof SystemMetadata>(key: T, value: SystemMetadata[T]): Promise<void>;
|
|
readFile(filename: string): Promise<string>;
|
|
}
|