This commit is contained in:
aozhiwei 2024-06-04 10:34:40 +08:00
parent 167ab19560
commit 86f87dabda

View File

@ -15,8 +15,13 @@ func (this *NftMetaApi) Hero(c *gin.Context) {
mt.Table.Config.GetGameApiUrl(),
map[string]string{
"c": "OutAppNft",
"a": "nftMetaView",
"nft_type": "hero",
"net_id": "",
"token_id": "",
},
func (rsp f5.HttpCliResponse) {
c.String(200, rsp.GetRawData())
})
}
@ -25,7 +30,12 @@ func (this *NftMetaApi) GoldBullion(c *gin.Context) {
mt.Table.Config.GetGameApiUrl(),
map[string]string{
"c": "OutAppNft",
"a": "nftMetaView",
"nft_type": "gold_bullion",
"net_id": "",
"token_id": "",
},
func (rsp f5.HttpCliResponse) {
c.String(200, rsp.GetRawData())
})
}