Remove unsused code.

This commit is contained in:
Ferdinand Mütsch 2019-05-06 07:33:46 +02:00
parent b403d4105f
commit 3bc706ed4b
1 changed files with 2 additions and 4 deletions

View File

@ -25,7 +25,7 @@ func readConfig() models.Config {
log.Fatal(err)
}
portPtr, err := strconv.Atoi(os.Getenv("WAKAPI_PORT"))
port, err := strconv.Atoi(os.Getenv("WAKAPI_PORT"))
dbUser, valid := os.LookupEnv("WAKAPI_DB_USER")
dbPassword, valid := os.LookupEnv("WAKAPI_DB_PASSWORD")
dbHost, valid := os.LookupEnv("WAKAPI_DB_HOST")
@ -39,7 +39,7 @@ func readConfig() models.Config {
}
return models.Config{
Port: portPtr,
Port: port,
DbHost: dbHost,
DbUser: dbUser,
DbPassword: dbPassword,
@ -80,8 +80,6 @@ func main() {
// Setup Routing
router := mux.NewRouter()
apiRouter := mux.NewRouter().PathPrefix("/api").Subrouter()
n := negroni.Classic()
n.UseHandler(router)
// API Routes
heartbeats := apiRouter.Path("/heartbeat").Subrouter()