16 lines
271 B
Go
16 lines
271 B
Go
package skyhorse
|
|
|
|
import "go-common/library/net/http/blademaster"
|
|
|
|
type Client struct {
|
|
conf *blademaster.ClientConfig
|
|
}
|
|
|
|
func (c *Client) getConf() *blademaster.ClientConfig {
|
|
return c.conf
|
|
}
|
|
|
|
func New(c *blademaster.ClientConfig) *Client {
|
|
return &Client{conf: c}
|
|
}
|