33 lines
559 B
Go
33 lines
559 B
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-common/app/interface/main/ugcpay-rank/internal/conf"
|
|
ugcpay_rank "go-common/app/service/main/ugcpay-rank/api/v1"
|
|
)
|
|
|
|
// Dao dao
|
|
type Dao struct {
|
|
ugcPayRankAPI ugcpay_rank.UGCPayRankClient
|
|
}
|
|
|
|
// New init mysql db
|
|
func New() (dao *Dao) {
|
|
dao = &Dao{}
|
|
var err error
|
|
if dao.ugcPayRankAPI, err = ugcpay_rank.NewClient(conf.Conf.UGCPayRankGRPC); err != nil {
|
|
panic(err)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Close close the resource.
|
|
func (d *Dao) Close() {
|
|
}
|
|
|
|
// Ping dao ping
|
|
func (d *Dao) Ping(ctx context.Context) error {
|
|
return nil
|
|
}
|