This commit is contained in:
aozhiwei 2024-10-30 10:52:45 +08:00
parent e555aca96a
commit 0f42baade0
7 changed files with 55 additions and 0 deletions

View File

@ -1,4 +1,11 @@
package activity package activity
import (
"github.com/gin-gonic/gin"
)
type ActivityApi struct { type ActivityApi struct {
} }
func (this *ActivityApi) RollDice(c *gin.Context) {
}

View File

@ -1,4 +1,11 @@
package chip package chip
import (
"github.com/gin-gonic/gin"
)
type ChipApi struct { type ChipApi struct {
} }
func (this *ChipApi) List(c *gin.Context) {
}

View File

@ -1,4 +1,17 @@
package friend package friend
import (
"github.com/gin-gonic/gin"
)
type FriendApi struct { type FriendApi struct {
} }
func (this *FriendApi) List(c *gin.Context) {
}
func (this *FriendApi) Invite(c *gin.Context) {
}
func (this *FriendApi) Agree(c *gin.Context) {
}

View File

@ -1,4 +1,11 @@
package item package item
import (
"github.com/gin-gonic/gin"
)
type ItemApi struct { type ItemApi struct {
} }
func (this *ItemApi) List(c *gin.Context) {
}

View File

@ -1,4 +1,11 @@
package mission package mission
import (
"github.com/gin-gonic/gin"
)
type MissionApi struct { type MissionApi struct {
} }
func (this *MissionApi) List(c *gin.Context) {
}

View File

@ -1,4 +1,11 @@
package shop package shop
import (
"github.com/gin-gonic/gin"
)
type ShopApi struct { type ShopApi struct {
} }
func (this *ShopApi) Goods(c *gin.Context) {
}

View File

@ -1,4 +1,11 @@
package user package user
import (
"github.com/gin-gonic/gin"
)
type UserApi struct { type UserApi struct {
} }
func (this *UserApi) Login(c *gin.Context) {
}