1
0

config.go 270 B

123456789
  1. package pam
  2. // Config contains configuration for PAM authentication.
  3. //
  4. // ⚠️ WARNING: Change to the field name must preserve the INI key name for backward compatibility.
  5. type Config struct {
  6. // The name of the PAM service, e.g. system-auth.
  7. ServiceName string
  8. }