完成游戏人生账号绑定、解绑、绑定信息的接口开发

This commit is contained in:
2025-06-09 16:27:18 +08:00
parent 5ead851b99
commit fee4d55725
27 changed files with 764 additions and 25 deletions

15
api/task/task.go Normal file
View File

@ -0,0 +1,15 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package task
import (
"context"
"server/api/task/v1"
)
type ITaskV1 interface {
Ranking(ctx context.Context, req *v1.RankingReq) (res *v1.RankingRes, err error)
}