stubbed out

This commit is contained in:
2022-03-02 06:24:55 -05:00
parent c1c8037b88
commit 1cb6879786
10 changed files with 459 additions and 1 deletions

9
pwgenerator/errs.go Normal file
View File

@@ -0,0 +1,9 @@
package pwgenerator
import (
"errors"
)
var (
ErrBadType error = errors.New("cannot typeswitch; unsupported type")
)