Created
August 28, 2015 14:58
-
-
Save WadeWaldron/ee9367e641f166d9137b to your computer and use it in GitHub Desktop.
2015-08-28-DataStoreAbstractions-UserStore
This file contains 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
trait UserStore { | |
def find(userId: UserId): Option[User] | |
def save(user: User): User | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment