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

23
cmd/kill/consts.go Normal file
View File

@@ -0,0 +1,23 @@
package main
import (
`context`
`sync`
`github.com/hashicorp/vault-client-go`
`github.com/jessevdk/go-flags`
`r00t2.io/goutils/logging`
)
var (
logger logging.Logger
args *Args = new(Args)
parser *flags.Parser = flags.NewParser(args, flags.Default)
)
var (
vc *vault.Client
wg sync.WaitGroup
ctx context.Context = context.Background()
existingOtp map[string]struct{} = make(map[string]struct{})
)