This commit is contained in:
2024-09-24 13:31:28 +08:00
parent 2bdc5e666b
commit e952657166
17 changed files with 521 additions and 85 deletions

View File

@ -0,0 +1,7 @@
package resp
// HeadersResp 网络请求头响应
type HeadersResp struct {
IP string `json:"ip"`
Headers map[string]string `json:"headers"`
}