Skip to content

Instantly share code, notes, and snippets.

@phuctm97
Created September 30, 2019 16:31
Show Gist options
  • Save phuctm97/6030aaf817ee25870c69798ba0e0b65c to your computer and use it in GitHub Desktop.
Save phuctm97/6030aaf817ee25870c69798ba0e0b65c to your computer and use it in GitHub Desktop.
Go RESTful Series
package users
// UserRepository abstracts accesses to users-related data.
type UserRepository interface {
ExistsByUsername(string) (bool, error)
ExistsByEmail(string) (bool, error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment