24 lines
439 B
Go
24 lines
439 B
Go
|
package dao
|
||
|
|
||
|
import (
|
||
|
"go-common/app/job/live/xlottery/internal/conf"
|
||
|
rcApi "go-common/app/service/live/rc/api/liverpc"
|
||
|
"go-common/library/net/rpc/liverpc"
|
||
|
)
|
||
|
|
||
|
// RcApi liverpc reward-service api
|
||
|
var RcApi *rcApi.Client
|
||
|
|
||
|
// InitAPI init all service APIs
|
||
|
func InitAPI() {
|
||
|
RcApi = rcApi.New(getConf("rc"))
|
||
|
}
|
||
|
|
||
|
func getConf(appName string) *liverpc.ClientConfig {
|
||
|
c := conf.Conf.LiveRpc
|
||
|
if c != nil {
|
||
|
return c[appName]
|
||
|
}
|
||
|
return nil
|
||
|
}
|