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.
 
 
 

17 lines
309 B

package liveBroadcast
import "go-common/library/net/http/blademaster"
//Client 客户端
type Client struct {
conf *blademaster.ClientConfig
}
func (c *Client) getConf() *blademaster.ClientConfig {
return c.conf
}
//New 创建
func New(c *blademaster.ClientConfig) *Client {
return &Client{conf: c}
}