21
0
Fork 0
This commit is contained in:
Mike Schwörer 2022-12-24 01:14:58 +01:00
parent 8431b6adf5
commit 64cc1342a0
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
1 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,13 @@
package sq
type PP map[string]any
func Join(pps ...PP) PP {
r := PP{}
for _, add := range pps {
for k, v := range add {
r[k] = v
}
}
return r
}