Last active
September 7, 2021 17:32
-
-
Save percybolmer/6e5872d49c5071b69e4a60e214cdb000 to your computer and use it in GitHub Desktop.
graphQL
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 gopher | |
type Repository interface { | |
GetGophers() ([]Gopher, error) | |
GetGopher(id string) (Gopher, error) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment