initial commit

This commit is contained in:
brent saner
2024-12-17 17:39:10 -05:00
commit 010643757e
29 changed files with 1644 additions and 0 deletions

9
conf/consts.go Normal file
View File

@@ -0,0 +1,9 @@
package conf
import (
"github.com/go-playground/validator/v10"
)
var (
validate *validator.Validate = validator.New(validator.WithRequiredStructEnabled())
)