This commit is contained in:
2022-12-24 01:14:58 +01:00
parent 8431b6adf5
commit 64cc1342a0

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
}