start on a wrapper for sam3

This commit is contained in:
eyedeekay
2025-02-23 18:01:43 -05:00
parent 6587c5c635
commit c50775ebfd
22 changed files with 2313 additions and 13 deletions

View File

@ -71,8 +71,10 @@ func ExtractDest(input string) string {
return strings.Split(input, " ")[0]
}
var randSource = rand.NewSource(time.Now().UnixNano())
var randGen = rand.New(randSource)
var (
randSource = rand.NewSource(time.Now().UnixNano())
randGen = rand.New(randSource)
)
func RandPort() string {
for {