提交一些接口
This commit is contained in:
25
trunk/center/usercenter/internal/game/api.go
Normal file
25
trunk/center/usercenter/internal/game/api.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package game
|
||||
|
||||
import (
|
||||
"common/remark"
|
||||
"common/webServer"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
||||
//注册接口
|
||||
webServer.RegisterFunction(new(GameApi))
|
||||
}
|
||||
|
||||
func init() {
|
||||
moduleName := "UserApi"
|
||||
desc := "用户接口"
|
||||
author := "tangping"
|
||||
mendor := ""
|
||||
date := "2025年1月7日14:38:22"
|
||||
remark.RegisterModuleRemark(moduleName, desc, author, mendor, date)
|
||||
}
|
||||
|
||||
// GameApi 游戏接口
|
||||
type GameApi struct {
|
||||
}
|
||||
Reference in New Issue
Block a user