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 }