2025-03-06 23:55:46 +08:00

12 lines
136 B
Go

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