1
0

checking in

This commit is contained in:
brent saner
2025-12-23 20:58:56 -05:00
parent d94a46af0b
commit 84845f9fe5
37 changed files with 3117 additions and 642 deletions

11
errs/errors.go Normal file
View File

@@ -0,0 +1,11 @@
package errs
import (
`errors`
)
var (
ErrNilVault error = errors.New("provided VaultArgs is nil")
ErrNoCfg error = errors.New("no TOTP configuration found")
ErrNoCode error = errors.New("no code found returned")
)