This commit is contained in:
aozhiwei 2024-06-03 19:31:32 +08:00
parent 3c8c2a5ed4
commit 167ab19560

View File

@ -1,6 +1,8 @@
package nft
import (
"f5"
"mt"
"github.com/gin-gonic/gin"
)
@ -9,23 +11,21 @@ type NftMetaApi struct {
}
func (this *NftMetaApi) Hero(c *gin.Context) {
rspObj := struct {
ErrCode int32 `json:"errcode"`
ErrMsg string `json:"errmsg"`
}{
ErrCode: 0,
ErrMsg: "",
}
c.JSON(200, rspObj)
f5.GetHttpCliMgr().SyncSendGoStyleRequest(
mt.Table.Config.GetGameApiUrl(),
map[string]string{
"c": "OutAppNft",
},
func (rsp f5.HttpCliResponse) {
})
}
func (this *NftMetaApi) GoldBullion(c *gin.Context) {
rspObj := struct {
ErrCode int32 `json:"errcode"`
ErrMsg string `json:"errmsg"`
}{
ErrCode: 0,
ErrMsg: "",
}
c.JSON(200, rspObj)
f5.GetHttpCliMgr().SyncSendGoStyleRequest(
mt.Table.Config.GetGameApiUrl(),
map[string]string{
"c": "OutAppNft",
},
func (rsp f5.HttpCliResponse) {
})
}