mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-20 21:01:17 +00:00
9 lines
192 B
Go
9 lines
192 B
Go
|
package plugins
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrProviderUnconfigured = errors.New("No valid configuration found for this provider")
|
||
|
ErrNoValidUserFound = errors.New("No valid users found")
|
||
|
)
|