netmaker/controllers/files.go
2021-12-07 12:46:55 -05: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"))))
}