This commit is contained in:
aozhiwei 2024-10-30 10:43:49 +08:00
parent a2e06ae3dd
commit e555aca96a
14 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package activity
type ActivityApi struct {
}

View File

@ -0,0 +1,5 @@
package activity
type ApiGroup struct {
ActivityApi
}

View File

@ -0,0 +1,4 @@
package chip
type ChipApi struct {
}

View File

@ -0,0 +1,5 @@
package chip
type ApiGroup struct {
ChipApi
}

View File

@ -0,0 +1,5 @@
package friend
type ApiGroup struct {
FriendApi
}

View File

@ -0,0 +1,4 @@
package friend
type FriendApi struct {
}

View File

@ -0,0 +1,5 @@
package item
type ApiGroup struct {
ItemApi
}

View File

@ -0,0 +1,4 @@
package item
type ItemApi struct {
}

View File

@ -0,0 +1,5 @@
package mission
type ApiGroup struct {
MissionApi
}

View File

@ -0,0 +1,4 @@
package mission
type MissionApi struct {
}

View File

@ -0,0 +1,5 @@
package enter
type ApiGroup struct {
ShopApi
}

View File

@ -0,0 +1,4 @@
package shop
type ShopApi struct {
}

View File

@ -0,0 +1,5 @@
package user
type ApiGroup struct {
UserApi
}

View File

@ -0,0 +1,4 @@
package user
type UserApi struct {
}