Jesper Rugård Jensen
Results
2
comments of
Jesper Rugård Jensen
Can it be because the client is never instantiated for the Repositories? I cant seem to find it in the code for creating the repository object, and if c *Client...
And solution could be something like: ``` func (r *Repositories) decodeRepositories(reposResponse interface{}) (*RepositoriesRes, error) { reposResponseMap, ok := reposResponse.(map[string]interface{}) if !ok { return nil, errors.New("Not a valid format") } repoArray...