mirror of
https://github.com/KevinMidboe/immich.git
synced 2026-01-06 01:05:49 +00:00
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>;
|
|
}
|