This commit is contained in:
2025-12-15 14:06:33 +01:00
parent 554527445b
commit 97a322354f
8 changed files with 83 additions and 82 deletions

View File

@@ -330,7 +330,9 @@ func runServer(ctx context.Context) error {
// Initialize web UI
cfg := ccconf.GetPackageConfig("ui")
web.Init(cfg)
if err := web.Init(cfg); err != nil {
return fmt.Errorf("initializing web UI: %w", err)
}
// Initialize HTTP server
srv, err := NewServer(version, commit, date)