🎨 Optimize multi-window services

This commit is contained in:
2025-11-05 00:10:26 +08:00
parent e9b6fef3cd
commit 1f0254822f
15 changed files with 220 additions and 239 deletions

View File

@@ -145,6 +145,7 @@ func NewServiceManager() *ServiceManager {
configService: configService,
databaseService: databaseService,
documentService: documentService,
windowSnapService: windowSnapService,
windowService: windowService,
migrationService: migrationService,
systemService: systemService,
@@ -189,6 +190,7 @@ func (sm *ServiceManager) GetServices() []application.Service {
application.NewService(sm.testService),
application.NewService(sm.BackupService),
application.NewService(sm.httpClientService),
application.NewService(sm.windowSnapService),
}
return services
}