func New(url string) APIRequest {
url := fmt.Sprintf("/api/%s%s", hmac.version, url)
r := APIRequest{URL: url}
return r
}
whenever I use the ** url := fmt.Sprintf("/api/%s%s", hmac.version, url) I get this error pkg\apirequest\apirequest.go:125:34: cannot refer to unexported name hmac.version I am unsure as to what this means. Any help would be appreciated.