mirror of https://github.com/authelia/authelia.git
12 lines
374 B
Go
12 lines
374 B
Go
package commands
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// ErrStdinIsNotTerminal is returned when Stdin is not an interactive terminal.
|
|
var ErrStdinIsNotTerminal = errors.New("stdin is not a terminal")
|
|
|
|
// ErrConfirmationMismatch is returned when user input does not match the confirmation prompt.
|
|
var ErrConfirmationMismatch = errors.New("user input didn't match the confirmation prompt")
|