15 lines
303 B
Go
15 lines
303 B
Go
package callback
|
|
|
|
import (
|
|
"context"
|
|
"github.com/ayflying/utility_go/service"
|
|
|
|
"github.com/ayflying/utility_go/api/callback/v1"
|
|
)
|
|
|
|
func (c *ControllerV1) Ip(ctx context.Context, req *v1.IpReq) (res *v1.IpRes, err error) {
|
|
res = &v1.IpRes{}
|
|
res.Address = service.Ip2Region().GetIp(req.Ip)
|
|
return
|
|
}
|