focalboard/server/services/auth/authentication.go
Jesús Espino 0568006a27 Auth WIP
2020-10-28 14:35:41 +01:00

15 lines
315 B
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package auth
type AuthService struct {
passwordSettings PasswordSettings
}
func New(passwordSettings PasswordSettings) *AuthService {
return &AuthService{
passwordSettings: passwordSettings,
}
}