mirror of
https://github.com/henrybear327/Proton-API-Bridge.git
synced 2025-12-26 00:57:41 -05:00
12 lines
391 B
Go
12 lines
391 B
Go
package common
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrKeyPassOrSaltedKeyPassMustBeNotNil = errors.New("either keyPass or saltedKeyPass must be not nil")
|
|
ErrFailedToUnlockUserKeys = errors.New("failed to unlock user keys")
|
|
|
|
ErrUsernameAndPasswordRequired = errors.New("username and password are required")
|
|
Err2FACodeRequired = errors.New("this account requires a 2FA code")
|
|
)
|