- package dto
- type RegisterRequest struct {
- Ip string `json:"ip"`
- CountryCode string `json:"countryCode"`
- CountryName string `json:"countryName"`
- City string `json:"city"`
- Secret string `json:"secret"`
- Vip bool `json:"vip"`
- }
- type DetailRequest struct {
- Ip string `form:"ip"`
- }
|