Remove unused import + export routes

This commit is contained in:
Tobie Morgan Hitchcock 2016-11-04 11:25:00 +00:00
parent 9b25a75a36
commit df7ee71cf6

View file

@ -59,18 +59,6 @@ func routes(s *fibre.Fibre) {
return c.Code(200)
})
// --------------------------------------------------
// Endpoint for database backups
// --------------------------------------------------
s.Get("/import", func(c *fibre.Context) error {
return c.Code(200)
})
s.Get("/export", func(c *fibre.Context) error {
return c.Code(200)
})
// --------------------------------------------------
// Endpoints for submitting rpc queries
// --------------------------------------------------