Created
November 7, 2019 02:30
-
-
Save manakuro/f3f48d548e4b0b95f6340153d58b6e91 to your computer and use it in GitHub Desktop.
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 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