netmaker/controllers/fileHttpController.go
2021-03-25 12:17:52 -04:00

12 lines
245 B
Go

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"))))
}