11 lines
127 B
Go
Raw Normal View History

2025-03-02 04:36:17 +08:00
package newshttp
import "go.uber.org/fx"
var Module = fx.Module("news", fx.Invoke(
GetAll,
GetBySlug,
2025-03-02 04:36:17 +08:00
Create,
2025-03-05 23:55:41 +08:00
Delete,
2025-03-02 04:36:17 +08:00
))