v0.0.389
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled

This commit is contained in:
2024-02-21 16:10:28 +01:00
parent 3cc8dccc63
commit 9e586f7706
6 changed files with 60 additions and 14 deletions

View File

@@ -20,6 +20,12 @@ func (pp *PP) Add(v any) string {
return id
}
func (pp *PP) AddAll(other PP) {
for id, v := range other {
(*pp)[id] = v
}
}
func PPID() string {
return "p_" + langext.RandBase62(8)
}