1234567891011121314151617181920212223242526272829303132 |
- package location
- import (
- "context"
- "go-common/app/interface/main/app-interface/conf"
- locmdl "go-common/app/service/main/location/model"
- locrpc "go-common/app/service/main/location/rpc/client"
- "go-common/library/log"
- )
- // Dao is location dao.
- type Dao struct {
- // rpc
- locRPC *locrpc.Service
- }
- // New new a location dao.
- func New(c *conf.Config) (d *Dao) {
- d = &Dao{
- // rpc
- locRPC: locrpc.New(c.LocationRPC),
- }
- return
- }
- func (d *Dao) Info(c context.Context, ipaddr string) (info *locmdl.Info, err error) {
- if info, err = d.locRPC.Info(c, &locmdl.ArgIP{IP: ipaddr}); err != nil {
- log.Error("%v", err)
- }
- return
- }
|