feat(优化返回): 返回指针,用于区分空结构体

This commit is contained in:
xiaoqidun 2021-09-30 10:27:24 +08:00
parent 9bdad9dfc4
commit a3fcbdea3a

View File

@ -36,7 +36,7 @@ type Location struct {
}
// QueryIP 使用腾讯位置服务查询IP
func QueryIP(sk string, key string, ip string) (result Result, err error) {
func QueryIP(sk string, key string, ip string) (result *Result, err error) {
arg := &reqLBS{
SK: sk,
Path: "/ws/location/v1/ip",
@ -67,6 +67,6 @@ func QueryIP(sk string, key string, ip string) (result Result, err error) {
err = fmt.Errorf("resp code is %d, body is %s", bodyUnmarshal.Status, body)
return
}
result = bodyUnmarshal.Result
result = &bodyUnmarshal.Result
return
}