aboutsummaryrefslogtreecommitdiff
path: root/home.go
diff options
context:
space:
mode:
Diffstat (limited to 'home.go')
-rw-r--r--home.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/home.go b/home.go
deleted file mode 100644
index 490d8a3..0000000
--- a/home.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package main
-
-import "net/http"
-
-func init() {
- http.HandleFunc("/", homeHandler)
-}
-
-func homeHandler(w http.ResponseWriter, r *http.Request) {
- http.Redirect(w, r, "/view/Home", http.StatusFound)
-}