Initial commit

This commit is contained in:
simon987
2019-01-12 16:18:14 -05:00
commit 83276ce8b0
25 changed files with 1367 additions and 0 deletions

7
storage/error.go Normal file
View File

@@ -0,0 +1,7 @@
package storage
func handleErr(err error) {
if err != nil {
panic(err)
}
}