24 lines
634 B
Go
24 lines
634 B
Go
package radio
|
|
|
|
import "sundynix-go/service"
|
|
|
|
type ApiGroup struct {
|
|
CategoryApi
|
|
ChannelApi
|
|
ProgramApi
|
|
SubscriptionApi
|
|
InteractionApi
|
|
PayApi
|
|
}
|
|
|
|
var ApiGroupApp = new(ApiGroup)
|
|
|
|
var (
|
|
categoryService = service.GroupApp.RadioServiceGroup.CategoryService
|
|
channelService = service.GroupApp.RadioServiceGroup.ChannelService
|
|
programService = service.GroupApp.RadioServiceGroup.ProgramService
|
|
subscriptionService = service.GroupApp.RadioServiceGroup.SubscriptionService
|
|
interactionService = service.GroupApp.RadioServiceGroup.InteractionService
|
|
payService = service.GroupApp.RadioServiceGroup.PayService
|
|
)
|