26 lines
393 B
Go
26 lines
393 B
Go
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 {
|
|
}
|