feat: migrate anime module to modular domain pattern

This commit is contained in:
2026-05-13 10:32:44 +02:00
parent 34aeb91252
commit c32ffd54de
7 changed files with 516 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package app
import (
"mal/internal/database"
"mal/internal/auth"
"mal/internal/anime"
"mal/internal/server"
"mal/internal/templates"
@@ -16,6 +17,7 @@ func NewApp() *fx.App {
database.Module,
jikan.Module,
auth.Module,
anime.Module,
templates.Module,
server.Module,
fx.Decorate(func(r *templates.Renderer) render.HTMLRender {