diff --git a/main.go b/main.go index ed5bda4..789d3b2 100644 --- a/main.go +++ b/main.go @@ -94,14 +94,8 @@ func get(w http.ResponseWriter, r *http.Request) { return } - file, err := os.Open(path) - if err != nil { - handleError(w, r, err) - return - } - defer file.Close() - - io.Copy(w, file) + r.URL.Path = path + fileServer.ServeHTTP(w, r) } func put(w http.ResponseWriter, r *http.Request) {