From c04e4f82dd28b03ee6052ceee129ea6955645ac7 Mon Sep 17 00:00:00 2001 From: Victor Vrantchan Date: Mon, 29 Aug 2016 09:07:23 -0400 Subject: [PATCH] add setpassword to service --- kolide/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kolide/service.go b/kolide/service.go index 6288bdd01c..e9de044a0b 100644 --- a/kolide/service.go +++ b/kolide/service.go @@ -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 }