request.go 208 B

1234567891011
  1. package dto
  2. type RegisterRequest struct {
  3. Ip string `json:"ip"`
  4. CountryCode string `json:"countryCode"`
  5. Secret string `json:"secret"`
  6. }
  7. type DetailRequest struct {
  8. Ip string `form:"ip"`
  9. }