Initial Commit

This commit is contained in:
Patrick McDonagh
2017-09-27 11:18:17 -05:00
commit 62ed942495
16 changed files with 922 additions and 0 deletions

14
main.go Normal file
View File

@@ -0,0 +1,14 @@
package main
import "os"
func main() {
a := App{}
a.Initialize(
os.Getenv("APP_DB_USERNAME"),
os.Getenv("APP_DB_PASSWORD"),
os.Getenv("APP_DB_NAME"))
a.Run(":8080")
}