workflow.go 141 B

1234567
  1. package response
  2. type MsgResponse struct {
  3. Success bool `json:"success"`
  4. ErrCode int `json:"errCode"`
  5. Msg string `json:"msg"`
  6. }