almost done ackshually

This commit is contained in:
2025-01-31 17:18:35 -05:00
parent 6dcf5b9e2e
commit b09cb83017
21 changed files with 1646 additions and 3 deletions

18
cmd/subnetter/consts.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"github.com/go-playground/validator/v10"
"strings"
)
var (
args *Args = new(Args)
validate *validator.Validate = validator.New(validator.WithRequiredStructEnabled())
)
var (
sectSepCnt int = 48
sectSep1 string = strings.Repeat("=", sectSepCnt)
sectSep2 string = strings.Repeat("-", sectSepCnt)
sectSep3 string = strings.Repeat(".", sectSepCnt)
)