code_data.go 215 B

1234567891011
  1. package subtitle_best_api
  2. type CodeReqData struct {
  3. NowTime string `json:"now_time"`
  4. }
  5. type CodeReplyData struct {
  6. Status int `json:"status"`
  7. Message string `json:"message"`
  8. Code string `json:"code"`
  9. }