generated from TrueCloudLab/basic
9 lines
189 B
Go
9 lines
189 B
Go
|
package mfa
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
// ErrMFAEntityAlreadyExists returned during MFA device creation by MFA Manager.
|
||
|
ErrMFAEntityAlreadyExists = errors.New("mfa entity already exists")
|
||
|
)
|