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.
 
 
 

23 lines
432 B

package dao
import (
"go-common/app/admin/live/live-admin/conf"
avApi "go-common/app/service/live/av/api/liverpc"
"go-common/library/net/rpc/liverpc"
)
// AvApi liveRpc room-service api
var AvApi *avApi.Client
// InitAPI init all service APIs
func InitAPI() {
AvApi = avApi.New(getConf("av"))
}
func getConf(appName string) *liverpc.ClientConfig {
c := conf.Conf.LiveRpc
if c != nil {
return c[appName]
}
return nil
}