From e811634060c856248c7c73f49f75df9a50efe0bc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Josu=C3=A9=20Rodr=C3=ADguez?= Date: Thu, 20 Jul 2023 22:57:47 +0000 Subject: [PATCH] Some minor cleaning as usual --- vscpweb.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vscpweb.go b/vscpweb.go index 69dc1d1..a977ad8 100644 --- a/vscpweb.go +++ b/vscpweb.go @@ -8,15 +8,16 @@ import ( "net/http" hh "healthHandlers" + mh "managementHandlers" + vh "virtualAPIHandlers" + ch "controllerHandlers" + sh "staticHandlers" "github.com/go-chi/chi/v5" "github.com/go-chi/chi/v5/middleware" ) -// mh "managementHandlers" -// sh "staticHandlers" -// vh "virtualAPIHandlers" -// ch "controllerHandlers" + func main() { //create a new server and mount the handlers: s := CreateNewServer() -- 2.25.1