This commit is contained in:
Leon Bösche
2026-01-08 13:07:07 +01:00
parent 87ee5f2ae3
commit 5cb99815a0
20 changed files with 1869 additions and 202 deletions

View File

@@ -25,11 +25,7 @@ func main() {
jwtManager := jwt.NewManager(cfg.JWTSecret)
authService, err := auth.NewService(cfg, db)
if err != nil {
fmt.Fprintf(os.Stderr, "Auth service error: %v\n", err)
os.Exit(1)
}
authService := auth.NewService(db)
auditLogger := audit.NewLogger(db)