You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
356 B

package service
import (
"context"
account "go-common/app/service/main/account/api"
"go-common/library/log"
)
// UserInfo get account info.
func (s *Service) UserInfo(c context.Context, mid int64) (res *account.InfoReply, err error) {
if res, err = s.accDao.RPCInfo(c, mid); err != nil {
log.Error("s.accDao.RPCInfo error (%v)", err)
}
return
}