Skip to content

Instantly share code, notes, and snippets.

@softwarebygabe
Created August 19, 2019 19:55
Show Gist options
  • Save softwarebygabe/a3fe37214d1fc95a36a9515e0a3c8a9b to your computer and use it in GitHub Desktop.
Save softwarebygabe/a3fe37214d1fc95a36a9515e0a3c8a9b to your computer and use it in GitHub Desktop.
package external
type Client struct{}
func NewClient() Client {
return Client{}
}
func (c Client) GetData() (string, error) {
return "data", nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment