13 lines
168 B
Go
13 lines
168 B
Go
package subscribeplanhttp
|
|
|
|
import "go.uber.org/fx"
|
|
|
|
var Module = fx.Module("subscribe-plan",
|
|
fx.Invoke(
|
|
CreateSubscribePlan,
|
|
GetAllPlan,
|
|
Update,
|
|
Delete,
|
|
),
|
|
)
|