34d300d1da
* refactor: flatten infra folders * fix: database migrations * fix: test related import * fix: github actions workflow * chore: rename schemas to typesense-schemas
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
import { SystemConfigEntity } from '@app/infra/entities';
|
|
|
|
export const ISystemConfigRepository = 'ISystemConfigRepository';
|
|
|
|
export interface ISystemConfigRepository {
|
|
load(): Promise<SystemConfigEntity[]>;
|
|
saveAll(items: SystemConfigEntity[]): Promise<SystemConfigEntity[]>;
|
|
deleteKeys(keys: string[]): Promise<void>;
|
|
}
|