Mandanten, OAuth, Cleanup von der Main Methode.

This commit is contained in:
2025-08-20 16:08:58 +02:00
parent a6570d463a
commit 372dced0a1
16 changed files with 432 additions and 154 deletions

12
utils/applicationCtx.go Normal file
View File

@ -0,0 +1,12 @@
package utils
import (
"log/slog"
"gorm.io/gorm"
)
type Application struct {
Logger *slog.Logger
DB *gorm.DB
}