summaryrefslogtreecommitdiff
path: root/system/addon/server.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2017-01-11 18:56:25 -0800
committerSteve Manuel <nilslice@gmail.com>2017-01-11 18:56:25 -0800
commitda6ccd6f7b0a0f177efbe21f08bcf04377b7e044 (patch)
tree46736c1acc309494f693265a0f5363bf79e006e9 /system/addon/server.go
parent6428f9982e7f1d42e70a18d2e210873eb730959c (diff)
moving addon handlers back into admin package
Diffstat (limited to 'system/addon/server.go')
-rw-r--r--system/addon/server.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/addon/server.go b/system/addon/server.go
deleted file mode 100644
index 8e5ab3b..0000000
--- a/system/addon/server.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package addon
-
-import (
- "net/http"
-
- "github.com/ponzu-cms/ponzu/system/admin/user"
-)
-
-// Run adds Handlers to default http listener for Addon
-func Run() {
- http.HandleFunc("/admin/addons", user.Auth(addonsHandler))
- http.HandleFunc("/admin/addon", user.Auth(addonHandler))
-}