diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-05-15 03:49:49 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-05-15 03:49:49 -0700 |
commit | 8f12938f28c0637a9261c7fcb4b0e311b8ba3b40 (patch) | |
tree | a0f521025b809979085164c8e8e843b650c55c6f /system/admin/server.go | |
parent | 0cf8aa550a3da63cb1509678bf5add0d73925546 (diff) |
adding csv format interface and handler impl
Diffstat (limited to 'system/admin/server.go')
-rw-r--r-- | system/admin/server.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/admin/server.go b/system/admin/server.go index 2180441..426dabd 100644 --- a/system/admin/server.go +++ b/system/admin/server.go @@ -37,6 +37,7 @@ func Run() { http.HandleFunc("/admin/contents", user.Auth(contentsHandler)) http.HandleFunc("/admin/contents/search", user.Auth(searchHandler)) + http.HandleFunc("/admin/contents/export", user.Auth(exportHandler)) http.HandleFunc("/admin/edit", user.Auth(editHandler)) http.HandleFunc("/admin/edit/delete", user.Auth(deleteHandler)) |