This commit is contained in:
2024-09-25 16:35:07 +08:00
parent e952657166
commit 43f78fb688
14 changed files with 347 additions and 0 deletions

View File

@ -0,0 +1,6 @@
package req
// GetIpInfoRequest 获取IP信息请求
type GetIpInfoRequest struct {
IP string `json:"ip" validate:"required"` // IP 地址
}