Skip to content

Commit

Permalink
ref: renamed token store constructor (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
noxecane authored Aug 14, 2020
1 parent 64503a9 commit 60bcaff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokens/token.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Store struct {
secret []byte
}

func NewTokenStore(r *redis.Client, secret []byte) *Store {
func NewStore(r *redis.Client, secret []byte) *Store {
return &Store{redis: r, secret: secret}
}

Expand Down

0 comments on commit 60bcaff

Please sign in to comment.