GITLAB

Hermes / api-game

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • api-game_qianyi
  • controllers
  • ht-draw.go
  • 07718e2b   feat:基础框架 Browse Code »
    王家文
    2024-04-02 14:54:17 +0800  
ht-draw.go 305 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package controllers

// HtDrawController 绑定控制器
type HtDrawController struct {
	BaseController
}

func (c *HtDrawController) Draw() {

	resp := make(map[string]interface{})

	var data = make(map[string]interface{})

	data["nowid"] = 1
	data["award"] = 2
	resp["data"] = data

	c.RetData(resp)

}