dashboard: came back online

This commit is contained in:
nemunaire 2018-11-21 05:19:57 +01:00 committed by Pierre-Olivier Mercier
parent d7553f0392
commit 2259c78730
7 changed files with 359 additions and 34 deletions

11
dashboard/api/router.go Normal file
View file

@ -0,0 +1,11 @@
package api
import (
"github.com/julienschmidt/httprouter"
)
var router = httprouter.New()
func Router() *httprouter.Router {
return router
}