bench-forgejo/modules/auth/pam/pam_stub.go

17 lines
349 B
Go
Raw Normal View History

2015-07-14 17:17:20 +05:30
// +build !pam
2015-04-23 17:28:57 +05:30
// 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"
)
2016-11-27 11:33:59 +05:30
// Auth not supported lack of pam tag
func Auth(serviceName, userName, passwd string) error {
2015-04-23 17:28:57 +05:30
return errors.New("PAM not supported")
}