cmd.api 642 B

1234567891011121314151617181920212223242526272829303132333435
  1. syntax = "v1"
  2. info(
  3. title: "用户操作实例"
  4. desc: "用户操作实例"
  5. author: "#Suyghur"
  6. )
  7. type (
  8. PlayerConnectReq {
  9. CsId string `json:"cs_id"`
  10. }
  11. PlayerDisconnectReq {
  12. CsId string `json:"cs_id"`
  13. ChatId string `json:"chat_id"`
  14. }
  15. CsConnectReq {
  16. PlayerId string `json:"palyer_id"`
  17. GameId string `json:"game_id"`
  18. }
  19. CsDisconnectReq {
  20. PlayerId string `json:"player_id"`
  21. ChatId string `json:"chat_id"`
  22. }
  23. SendReq {
  24. ChatId string `form:"chat_id"`
  25. Msg string `form:"msg"`
  26. Pic string `form:"pic,optional"`
  27. }
  28. )