10 lines
198 B
Go
10 lines
198 B
Go
package web
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func (ws *WebServer) setupDashboardRoutes(appRouter *mux.Router) {
|
|
// Dashboard
|
|
appRouter.HandleFunc("/", ws.appHandler.DashboardHTTPHandler())
|
|
} |