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
import (
"github.com/gin-gonic/gin"
)
type ActivityApi struct {
}
func (this *ActivityApi) RollDice(c *gin.Context) {
}

View File

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

View File

@ -1,4 +1,17 @@
package friend
import (
"github.com/gin-gonic/gin"
)
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
import (
"github.com/gin-gonic/gin"
)
type ItemApi struct {
}
func (this *ItemApi) List(c *gin.Context) {
}

View File

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

View File

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

View File

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