request.go 176 B

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