Create bin dir

This commit is contained in:
2015-03-13 14:24:48 +07:00
parent edcdd67551
commit dbd943333b
2 changed files with 289 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"github.com/localhots/empact/config"
"github.com/localhots/empact/db"
"github.com/localhots/empact/server"
)
func main() {
if err := db.Connect(config.C().DatabaseURI); err != nil {
panic(err)
}
server.Start()
}