mirror of https://github.com/aldy505/bob.git
15 lines
304 B
Go
15 lines
304 B
Go
|
package util
|
||
|
|
||
|
// createArgs should create an argument []interface{} for SQL query
|
||
|
// I'm using the idiot approach for creating args
|
||
|
func CreateArgs(keys ...string) []interface{} {
|
||
|
var args []interface{}
|
||
|
for _, v := range keys {
|
||
|
if v == "" {
|
||
|
continue
|
||
|
}
|
||
|
args = append(args, v)
|
||
|
}
|
||
|
return args
|
||
|
}
|