feat: migrate watchlist module to modular domain pattern

This commit is contained in:
2026-05-13 10:33:24 +02:00
parent c32ffd54de
commit c94a2fed04
6 changed files with 256 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import (
"mal/internal/database"
"mal/internal/auth"
"mal/internal/anime"
"mal/internal/watchlist"
"mal/internal/server"
"mal/internal/templates"
@@ -18,6 +19,7 @@ func NewApp() *fx.App {
jikan.Module,
auth.Module,
anime.Module,
watchlist.Module,
templates.Module,
server.Module,
fx.Decorate(func(r *templates.Renderer) render.HTMLRender {