refactor: move app wiring to internal root

This commit is contained in:
2026-06-20 19:14:27 +02:00
committed by Milas Holsting
parent 87eb4c6403
commit 584754c0ca
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
// Package app bootstraps and wires the application dependencies.
package app
package internal
import (
"mal/integrations/jikan"
@@ -36,6 +35,7 @@ func NewApp() *fx.App {
playback.Module,
templates.Module,
server.Module,
fx.Invoke(RunMigrationsAndFixes),
fx.Provide(func(r *templates.Renderer) render.HTMLRender {
return r
}),