mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { SmartInfoEntity } from '@app/infra/entities';
|
|
|
|
export const ISmartInfoRepository = 'ISmartInfoRepository';
|
|
|
|
export interface ISmartInfoRepository {
|
|
upsert(info: Partial<SmartInfoEntity>): Promise<void>;
|
|
}
|