tokidoki/auth/pam_stub.go

12 lines
144 B
Go
Raw Permalink Normal View History

//go:build !pam
package auth
import (
"errors"
)
func NewPAM() (AuthProvider, error) {
return nil, errors.New("PAM support is disabled")
}