13 lines
168 B
Go
Raw Normal View History

2025-02-24 16:48:20 +08:00
package subscribeplanhttp
import "go.uber.org/fx"
var Module = fx.Module("subscribe-plan",
fx.Invoke(
CreateSubscribePlan,
2025-02-24 20:18:09 +08:00
GetAllPlan,
Update,
Delete,
2025-02-24 16:48:20 +08:00
),
)