summaryrefslogtreecommitdiff
path: root/system/addon/server.go
diff options
context:
space:
mode:
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))
-}