Created
August 19, 2019 19:55
-
-
Save softwarebygabe/a3fe37214d1fc95a36a9515e0a3c8a9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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