aboutsummaryrefslogtreecommitdiff
path: root/root.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-02-17 16:53:04 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-02-17 16:53:04 +0100
commit98ffc2688cb8cc31ffb1c24e0d07977e1b61bca7 (patch)
treeeafd82a89ab20cfbf257129c72ca8fdd65261ffc /root.go
parentee22fe4ee5fc422d9e245e322801c1842803dfd6 (diff)
Add tooltips, rename Root into Home
Diffstat (limited to 'root.go')
-rw-r--r--root.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/root.go b/root.go
deleted file mode 100644
index b9b7e4d..0000000
--- a/root.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package main
-
-import "net/http"
-
-func init() {
- http.HandleFunc("/", rootHandler)
-}
-
-func rootHandler(w http.ResponseWriter, r *http.Request) {
- http.Redirect(w, r, "/view/Root", http.StatusFound)
-}