ipv6-test-backend/internal/pkg/protocol/responses.go
thehrz 063f32fcbb
All checks were successful
CI / deploy (push) Successful in 1m28s
feat: add ISP query
2024-08-20 13:38:32 +08:00

11 lines
167 B
Go

package protocol
type MyIPResponse struct {
Address string `json:"address"`
Version string `json:"version"`
}
type ISPResponse struct {
ISP string `json:"isp"`
}