GITLAB

Hermes / api-game

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • api-game_qianyi
  • models
  • demo.go
  • fd5cfd1b   feat✨:调试接口 Browse Code »
    王家文
    2024-04-23 16:37:16 +0800  
demo.go 384 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 21 22 23
package models

// ReqDemo 请求
type ReqDemo struct {
	BaseLoginInfo
	BaseSign
}

// RspDemo 返回
type RspDemo struct {
}

// ReqDump 请求
type ReqDump struct {
	GameID string   `form:"gameid" json:"gameid"`
	Mode   string   `form:"mode" json:"mode"`
	Args   []string `form:"args" json:"args"`
}

// RspDump 返回
type RspDump struct {
	Text string `form:"text" json:"text"`
}