Skip to content

Instantly share code, notes, and snippets.

@marioarizaj
Last active January 18, 2021 16:05
Show Gist options
  • Save marioarizaj/22be8271b65b9e97c1a596207920f050 to your computer and use it in GitHub Desktop.
Save marioarizaj/22be8271b65b9e97c1a596207920f050 to your computer and use it in GitHub Desktop.
type StorageIFace interface {
CreateAuthor(author *models.Author) (*models.Author, error)
GetAllAuthors() ([]models.Author, error)
CreateArticle(article *models.Article) (*models.Article, error)
GetAllArticles() ([]models.Article, error)
}
// Code down here does not change
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment