Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created November 7, 2019 02:30
Show Gist options
  • Save manakuro/f3f48d548e4b0b95f6340153d58b6e91 to your computer and use it in GitHub Desktop.
Save manakuro/f3f48d548e4b0b95f6340153d58b6e91 to your computer and use it in GitHub Desktop.
package repository
import "github.com/manakuro/golang-clean-architecture/domain/model"
type UserRepository interface {
FindAll(u []*model.User) ([]*model.User, error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment