summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-09-12 22:40:52 +0200
committerKevin Chabowski <kevin@kch42.de>2013-09-12 22:40:52 +0200
commit0fe336b08f7868d0f7b531cb30c9facfea0f25f2 (patch)
tree0cb6a8aee4b3f0389c48d800b19f444f3aea4016 /main.go
parentb0e40b8764eab7c40b3f5e6f994af3c423b92dfc (diff)
downloadmailremind-0fe336b08f7868d0f7b531cb30c9facfea0f25f2.tar.gz
mailremind-0fe336b08f7868d0f7b531cb30c9facfea0f25f2.tar.bz2
mailremind-0fe336b08f7868d0f7b531cb30c9facfea0f25f2.zip
Added settings page
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index ac295d5..e4102fa 100644
--- a/main.go
+++ b/main.go
@@ -94,6 +94,7 @@ func main() {
router.HandleFunc("/jobs", mkHttpHandler(jobs, tplJobs))
router.HandleFunc("/jobedit", mkHttpHandler(jobedit, tplJobedit))
router.HandleFunc("/jobedit/{ID}", mkHttpHandler(jobedit, tplJobedit))
+ router.HandleFunc("/settings", mkHttpHandler(settings, tplSettings))
http.Handle("/", router)