feat: add frontend

This commit is contained in:
Stavros
2026-06-11 18:40:56 +03:00
parent 24f166551e
commit cd51263428
8 changed files with 71 additions and 35 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ type OAuthController struct {
log *logger.Logger
config model.Config
runtime model.RuntimeConfig
helpers model.RuntimeHelpers
helpers *model.RuntimeHelpers
auth *service.AuthService
}
@@ -32,7 +32,7 @@ func NewOAuthController(
log *logger.Logger,
config model.Config,
runtimeConfig model.RuntimeConfig,
helpers model.RuntimeHelpers,
helpers *model.RuntimeHelpers,
router *gin.RouterGroup,
auth *service.AuthService,
) *OAuthController {