mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
* refactor: user repository * refactor: user module * refactor: move database into infra * refactor(cli): use user core * chore: import path * chore: tests
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
import { AssetEntity } from '@app/infra';
|
|
|
|
export interface IMachineLearningJob {
|
|
/**
|
|
* The Asset entity that was saved in the database
|
|
*/
|
|
asset: AssetEntity;
|
|
}
|