查询任务排行,新增游戏基本接口
This commit is contained in:
18
api/game/game.go
Normal file
18
api/game/game.go
Normal file
@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package game
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"server/api/game/v1"
|
||||
)
|
||||
|
||||
type IGameV1 interface {
|
||||
List(ctx context.Context, req *v1.ListReq) (res *v1.ListRes, err error)
|
||||
Create(ctx context.Context, req *v1.CreateReq) (res *v1.CreateRes, err error)
|
||||
Update(ctx context.Context, req *v1.UpdateReq) (res *v1.UpdateRes, err error)
|
||||
Delete(ctx context.Context, req *v1.DeleteReq) (res *v1.DeleteRes, err error)
|
||||
}
|
||||
Reference in New Issue
Block a user