mirror of
https://github.com/diamondburned/cchat-discord.git
synced 2024-11-01 12:24:15 +00:00
23 lines
459 B
Go
23 lines
459 B
Go
package authenticate
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/diamondburned/cchat"
|
|
)
|
|
|
|
var (
|
|
ErrMalformed = errors.New("malformed authentication form")
|
|
EnterPassword = errors.New("enter your password")
|
|
)
|
|
|
|
// FirstStageAuthenticators constructs a slice of newly made first stage
|
|
// authenticators.
|
|
func FirstStageAuthenticators() []cchat.Authenticator {
|
|
return []cchat.Authenticator{
|
|
NewTokenAuthenticator(),
|
|
NewLoginAuthenticator(),
|
|
NewDiscordLogin(),
|
|
}
|
|
}
|