1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-05 06:00:24 +02:00

refactor: repositories (#16038)

This commit is contained in:
Jason Rasmussen
2025-02-11 15:12:31 -05:00
committed by GitHub
parent 9d85272c2b
commit 5f3a42a132
26 changed files with 216 additions and 242 deletions

View File

@ -391,3 +391,10 @@ export enum DatabaseExtension {
VECTOR = 'vector',
VECTORS = 'vectors',
}
export enum BootstrapEventPriority {
// Database service should be initialized before anything else, most other services need database access
DatabaseService = -200,
// Initialise config after other bootstrap services, stop other services from using config on bootstrap
SystemConfig = 100,
}