aboutsummaryrefslogtreecommitdiff
path: root/dashboard.go
diff options
context:
space:
mode:
authorrtz12 <koenig@fagott.pw>2016-10-03 12:34:36 (UTC)
committerrtz12 <koenig@fagott.pw>2016-10-03 12:34:36 (UTC)
commitc1d895a7db943b758bfbf214c3727569976f85e0 (patch)
tree09d50f05049095b92456c78b3df7fb074fbd53e3 /dashboard.go
parent5997487fc5cc2126fb5afa12b75b67f3985e11d2 (diff)
Formatierung gefixt und go fmt
Ein gewisser jemand sollte endlich mal seinen Editor richtig konfigurieren
Diffstat (limited to 'dashboard.go')
-rw-r--r--dashboard.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/dashboard.go b/dashboard.go
index ad3c565..64a0240 100644
--- a/dashboard.go
+++ b/dashboard.go
@@ -1,12 +1,13 @@
1package main 1package main
2 2
3import ( 3import (
4 "fagott.pw/grilist/grilist"
5 "github.com/julienschmidt/httprouter"
6 "log" 4 "log"
7 "net/http" 5 "net/http"
8 "sync" 6 "sync"
9 "time" 7 "time"
8
9 "fagott.pw/grilist/grilist"
10 "github.com/julienschmidt/httprouter"
10) 11)
11 12
12func viewDashboard(w http.ResponseWriter, r *http.Request, _ httprouter.Params) { 13func viewDashboard(w http.ResponseWriter, r *http.Request, _ httprouter.Params) {