mirror of
https://git.sr.ht/~sircmpwn/tokidoki
synced 2025-12-12 14:17:21 +01:00
Handy for small local installations. Disabled by default because it adds a dependency on the PAM library.
11 lines
144 B
Go
11 lines
144 B
Go
//go:build !pam
|
|
|
|
package auth
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func NewPAM() (AuthProvider, error) {
|
|
return nil, errors.New("PAM support is disabled")
|
|
}
|