unexport baseURL and webDavURL

This commit is contained in:
Henrique Dias
2017-06-25 13:09:49 +01:00
parent e6492286db
commit b93158b291
8 changed files with 25 additions and 25 deletions

View File

@@ -17,7 +17,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
}
func main() {
m = filemanager.New()
m = filemanager.New("D:\\TEST")
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}