1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-04 14:23:17 +00:00
forgejo/modules/auth/pam/pam_stub.go
2015-07-14 19:47:20 +08:00

15 lines
314 B
Go

// +build !pam
// 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
import (
"errors"
)
func PAMAuth(serviceName, userName, passwd string) error {
return errors.New("PAM not supported")
}