10 lines
121 B
Go
10 lines
121 B
Go
|
package pwgenerator
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrBadType error = errors.New("cannot typeswitch; unsupported type")
|
||
|
)
|