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.
|
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} |
|
}
|
|
|