tendermint/common/array.go

6 lines
79 B
Go
Raw Normal View History

2015-04-14 04:14:18 -07:00
package common
func Arr(items ...interface{}) []interface{} {
return items
}