From eefa309913f20da87223d9fb33a6b4dc86661792 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Sat, 20 Feb 2016 19:41:14 -0600 Subject: [PATCH] Working on Server --- boltrest-server/main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/boltrest-server/main.go b/boltrest-server/main.go index 194b2fb..dad8d1d 100644 --- a/boltrest-server/main.go +++ b/boltrest-server/main.go @@ -15,6 +15,10 @@ func main() { adminDB = boltrest.Open("admin.db") } +func mainLoop() { + +} + func initialize() error { // Make sure that the necessary files/directories are in place var tstDir *os.File @@ -50,4 +54,4 @@ func generateAPIKey() string { } } return string(b) -} \ No newline at end of file +}