mirror of https://github.com/gogs/gogs.git
14 lines
432 B
Go
14 lines
432 B
Go
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package pam
|
|
|
|
// Config contains configuration for PAM authentication.
|
|
//
|
|
// ⚠️ WARNING: Change to the field name must preserve the INI key name for backward compatibility.
|
|
type Config struct {
|
|
// The name of the PAM service, e.g. system-auth.
|
|
ServiceName string
|
|
}
|