first commit

This commit is contained in:
afeiszli
2021-03-25 12:17:52 -04:00
commit 0bacbd9f6c
56 changed files with 9205 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package controller
import (
"net/http"
"github.com/gorilla/mux"
)
func fileHandlers(r *mux.Router) {
r.PathPrefix("/meshclient/files").Handler(http.StripPrefix("/meshclient/files", http.FileServer(http.Dir("./meshclient/files"))))
}