v0.0.51
This commit is contained in:
parent
8431b6adf5
commit
64cc1342a0
10
sq/params.go
10
sq/params.go
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user