1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-12 00:34:20 -04:00
gitea/modules/auth/pam/pam_stub.go

17 lines
349 B
Go
Raw Normal View History

2015-07-14 07:47:20 -04:00
// +build !pam
2015-04-23 07:58:57 -04:00
// 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 01:03:59 -05:00
// Auth not supported lack of pam tag
func Auth(serviceName, userName, passwd string) error {
2015-04-23 07:58:57 -04:00
return errors.New("PAM not supported")
}