netmaker/controllers/files.go
2022-09-10 21:51:59 -07:00

20 lines
416 B
Go

package controller
import (
"net/http"
"github.com/gorilla/mux"
)
func fileHandlers(r *mux.Router) {
// swagger:route GET /meshclient/files/{filename} meshclient fileServer
//
// Retrieve a file from the file server.
//
// Schemes: https
//
// Security:
// oauth
r.PathPrefix("/meshclient/files").Handler(http.StripPrefix("/meshclient/files", http.FileServer(http.Dir("./meshclient/files"))))
}