package app import ( "backend/config" "backend/internal/usecase" "gorm.io/gorm" ) type AppContainer struct { cfg config.Config dbConn *gorm.DB authService usecase.AuthService }