Versions in this module Expand all Collapse all v0 v0.0.1 Apr 5, 2022 Changes in this version + type Api struct + Auth string + Category string + Host string + Prefix string + Scheme string + Timeout time.Duration + Version string + func NewApi(host, category string) *Api + func (a *Api) Get(url string) (resp *Response, err error) + func (a *Api) Post(url string, body io.Reader) (resp *Response, err error) + func (a *Api) Url(pathElems []string, queryParams map[string]string) string + type Project struct + Key string + func NewProject(host, key string) *Project + func (p *Project) GetRepo(slug string) (resp *Response, err error) + func (p *Project) PostRepo(name string) (resp *Response, err error) + type Response struct + Body []byte + StatusCode int