2025-03-24 13:32:05 +08:00

13 lines
146 B
Go

package newshttp
import "go.uber.org/fx"
var Module = fx.Module("news", fx.Invoke(
GetAll,
GetBySlug,
GetByID,
Create,
Update,
Delete,
))