netmaker/controllers/fileHttpController.go
2021-10-08 15:07:12 -04:00

11 lines
238 B
Go

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