34d300d1da
* 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>;
|
|
}
|