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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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,
}