types.go 196 B

123456789101112
  1. // Code generated by goctl. DO NOT EDIT.
  2. package types
  3. type Request struct {
  4. Path string `form:"path"`
  5. }
  6. type Response struct {
  7. Path string `json:"path"`
  8. Message string `json:"message"`
  9. }