Created
December 27, 2017 15:10
-
-
Save caalberts/ed2864393cd34419bd8ec526ce36ec60 to your computer and use it in GitHub Desktop.
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
package main | |
import ( | |
"strconv" | |
"errors" | |
) | |
type AccountRepository struct { | |
client RedisProxy | |
} | |
func NewAccountRepository(redis RedisProxy) *AccountRepository { | |
return &AccountRepository{redis} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment