mv tmlibs files to libs dir

This commit is contained in:
Ethan Buchman
2018-07-01 22:36:03 -04:00
parent 2d7ffdd72b
commit ae3bf81833
174 changed files with 0 additions and 0 deletions

5
libs/common/array.go Normal file
View File

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