stubbed out cipher funcs

This commit is contained in:
2022-04-28 05:18:25 -04:00
parent ff3f8243d1
commit 5da1bbcd11
23 changed files with 2657 additions and 49 deletions

9
errs/errs.go Normal file
View File

@@ -0,0 +1,9 @@
package errs
import (
"errors"
)
var (
ErrBadData = errors.New("unable to serialize/cast data into buffer; unknown or invalid data object")
)