move all files to common/ to begin repo merge

This commit is contained in:
Ethan Buchman
2017-04-18 16:33:22 -04:00
parent 5aecd32554
commit 356657a37b
22 changed files with 0 additions and 0 deletions

5
common/array.go Normal file
View File

@ -0,0 +1,5 @@
package common
func Arr(items ...interface{}) []interface{} {
return items
}