Working on Server

This commit is contained in:
Brian Buller 2016-02-20 19:41:14 -06:00
parent e6fb690fc3
commit eefa309913
1 changed files with 5 additions and 1 deletions

View File

@ -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)
}
}