feat: add jikan integration module

This commit is contained in:
2026-05-13 10:30:26 +02:00
parent 83da0b3c25
commit 4dd27d6d52
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package jikan
import (
"mal/internal/db"
"go.uber.org/fx"
)
var Module = fx.Options(
fx.Provide(NewClient),
)