This commit is contained in:
aozhiwei 2024-05-26 12:31:13 +08:00
parent 82f6bdfe53
commit c4fada6827
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
package controller package ca
type ApiGroup struct { type ApiGroup struct {
GameLog GameLog GameLogApi
} }
var ApiGroupApp = new(ApiGroup) var ApiGroupApp = new(ApiGroup)

View File

@ -1,4 +1,4 @@
package controller package ca
import ( import (
"q5" "q5"
@ -8,11 +8,11 @@ import (
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
) )
type GameLog struct { type GameLogApi struct {
} }
func (this *GameLog) caCustomReport(c *gin.Context) { func (this *GameLogApi) caCustomReport(c *gin.Context) {
rspObj := struct { rspObj := struct {
ErrCode int32 `json:"errcode"` ErrCode int32 `json:"errcode"`
ErrMsg string `json:"errmsg"` ErrMsg string `json:"errmsg"`