feat: apply user settings to effect

This commit is contained in:
engigu
2025-12-20 13:30:08 +08:00
parent 07d988cc7e
commit a4d73a6f89
17 changed files with 168 additions and 111 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ func (a *App) initDatabase() {
}
func (a *App) initRouter() {
ctrls := router.RegisterControllers()
a.Router = router.Setup(ctrls)
ctrls, settingsService := router.RegisterControllers()
a.Router = router.Setup(ctrls, settingsService)
}
func (a *App) Run() {