result.go 218 B

123456789101112
  1. package webmail
  2. import "encoding/json"
  3. //easyjson:json
  4. type Result struct {
  5. Ok string `json:"result" yaml:"result"`
  6. Error json.Number `json:"errno" yaml:"errno"`
  7. }
  8. //easyjson:json
  9. type ResultList []string