feat: migrate auth module to modular domain pattern

This commit is contained in:
2026-05-13 10:31:46 +02:00
parent afdd880d0e
commit 34aeb91252
6 changed files with 232 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ package app
import (
"mal/internal/database"
"mal/internal/auth"
"mal/internal/server"
"mal/internal/templates"
@@ -14,6 +15,7 @@ func NewApp() *fx.App {
return fx.New(
database.Module,
jikan.Module,
auth.Module,
templates.Module,
server.Module,
fx.Decorate(func(r *templates.Renderer) render.HTMLRender {