33 lines
584 B
Go
33 lines
584 B
Go
|
package resource
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"go-common/app/interface/main/app-player/conf"
|
||
|
resrpc "go-common/app/service/main/resource/rpc/client"
|
||
|
"go-common/library/log"
|
||
|
)
|
||
|
|
||
|
type Dao struct {
|
||
|
c *conf.Config
|
||
|
// rpc
|
||
|
resRPC *resrpc.Service
|
||
|
}
|
||
|
|
||
|
func New(c *conf.Config) (d *Dao) {
|
||
|
d = &Dao{
|
||
|
c: c,
|
||
|
// rpc
|
||
|
resRPC: resrpc.New(c.ResourceRPC),
|
||
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// PasterCID get all paster cid.
|
||
|
func (d *Dao) PasterCID(c context.Context) (cids map[int64]int64, err error) {
|
||
|
if cids, err = d.resRPC.PasterCID(c); err != nil {
|
||
|
log.Error("d.resRPC.PasterCID() error(%v)", err)
|
||
|
}
|
||
|
return
|
||
|
}
|