feat: auth handlers

This commit is contained in:
2025-09-07 16:45:20 +03:30
parent 5c5df48644
commit f4e5e074d3
11 changed files with 227 additions and 4 deletions
+13
View File
@@ -1 +1,14 @@
package app
import (
"backend/config"
"backend/internal/usecase"
"gorm.io/gorm"
)
type AppContainer struct {
cfg config.Config
dbConn *gorm.DB
authService usecase.AuthService
}