You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
252 B
Go

11 months ago
package v1
import (
"miniapp/api/v1/app"
"miniapp/api/v1/example"
"miniapp/api/v1/system"
)
type ApiGroup struct {
SystemApiGroup system.ApiGroup
ExampleApiGroup example.ApiGroup
AppApiGroup app.ApiGroup
}
var ApiGroupApp = new(ApiGroup)