Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created August 31, 2021 05:28
Show Gist options
  • Save percybolmer/3baa346fd04755b9c5c591ec980c5708 to your computer and use it in GitHub Desktop.
Save percybolmer/3baa346fd04755b9c5c591ec980c5708 to your computer and use it in GitHub Desktop.
// CustomerRepository is a interface that defines the rules around what a customer repository
// Has to be able to perform
type CustomerRepository interface {
Get(uuid.UUID) (Customer, error)
Add(Customer) error
Update(Customer) error
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment