Initial 2024-01-26

This commit is contained in:
root
2024-01-26 07:11:35 +12:00
commit d03c481b33
33 changed files with 4224 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package cmpSnipper
import (
"math/rand"
)
func (app *App) Rand4dSnip(parm any) (any, error) {
// app.Log("Rand4dSnip")
app.Rand4d = rand.Intn(10000) + 1000
return map[string]interface{}{
"rand4d" : app.Rand4d,
}, nil
}