add setpassword to service

This commit is contained in:
Victor Vrantchan 2016-08-29 09:07:23 -04:00
parent 739bd2924c
commit c04e4f82dd

View file

@ -9,4 +9,5 @@ type Service interface {
type UserService interface {
NewUser(ctx context.Context, p UserPayload) (*User, error)
SetPassword(ctx context.Context, userID uint, password string) error
}