Files
blog-server/internal/handler/module.go

16 lines
198 B
Go

package handler
import (
"server/internal/handler/admin"
"server/internal/handler/site"
"go.uber.org/fx"
)
var Module = fx.Module("handlers",
fx.Options(
admin.Module,
site.Module,
),
)