1
This commit is contained in:
parent
e555aca96a
commit
0f42baade0
@ -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) {
|
||||||
|
}
|
||||||
|
@ -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) {
|
||||||
|
}
|
||||||
|
@ -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) {
|
||||||
|
}
|
||||||
|
@ -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) {
|
||||||
|
}
|
||||||
|
@ -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) {
|
||||||
|
}
|
||||||
|
@ -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) {
|
||||||
|
}
|
||||||
|
@ -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) {
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user