fix body building
parent
f0a5dd5025
commit
74d2014541
11
lib.go
11
lib.go
|
@ -17,11 +17,9 @@ type Cli struct {
|
||||||
func (c *Cli) BasePath() string {
|
func (c *Cli) BasePath() string {
|
||||||
return c.basePath
|
return c.basePath
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Cli) SetBasePath(basePath string) {
|
func (c *Cli) SetBasePath(basePath string) {
|
||||||
c.basePath = basePath
|
c.basePath = basePath
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Cli) AddHeader(k string, v string) {
|
func (c *Cli) AddHeader(k string, v string) {
|
||||||
c.headers[k] = v
|
c.headers[k] = v
|
||||||
}
|
}
|
||||||
|
@ -135,3 +133,12 @@ func NewCli() *Cli {
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var cli *Cli
|
||||||
|
|
||||||
|
func C() *Cli {
|
||||||
|
if cli == nil {
|
||||||
|
cli = NewCli()
|
||||||
|
}
|
||||||
|
return cli
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue