13 lines
146 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-24 13:32:05 +08:00
GetByID,
2025-03-02 04:36:17 +08:00
Create,
2025-03-06 23:55:46 +08:00
Update,
2025-03-05 23:55:41 +08:00
Delete,
2025-03-02 04:36:17 +08:00
))