feat: migrate playback module to modular domain pattern

This commit is contained in:
2026-05-13 10:34:01 +02:00
parent c94a2fed04
commit 0d6c7613a9
7 changed files with 231 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import (
"mal/internal/auth"
"mal/internal/anime"
"mal/internal/watchlist"
"mal/internal/playback"
"mal/internal/server"
"mal/internal/templates"
@@ -20,6 +21,7 @@ func NewApp() *fx.App {
auth.Module,
anime.Module,
watchlist.Module,
playback.Module,
templates.Module,
server.Module,
fx.Decorate(func(r *templates.Renderer) render.HTMLRender {