Skip to content

Instantly share code, notes, and snippets.

@kpurdon
Last active April 24, 2016 22:02
Show Gist options
  • Save kpurdon/42b4b87032711a05d00cf233ff59c564 to your computer and use it in GitHub Desktop.
Save kpurdon/42b4b87032711a05d00cf233ff59c564 to your computer and use it in GitHub Desktop.
type Client interface {
Get(string) ([]Repo, error)
}
type ReposClient struct{}
func (c ReposClient) Get(user string) ([]Repo, error) {
// call github api
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment