focalboard/server/services/auth/authentication.go

15 lines
315 B
Go
Raw Normal View History

2020-10-28 14:35:41 +01:00
// 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,
}
}