tendermint/common/array.go
2017-04-18 16:33:22 -04:00

6 lines
79 B
Go

package common
func Arr(items ...interface{}) []interface{} {
return items
}