seaweedfs/weed/server/filer_server_handlers_write_multipart.go

14 lines
308 B
Go
Raw Normal View History

2018-05-28 06:53:10 +00:00
package weed_server
import (
"net/http"
)
func (fs *FilerServer) multipartUploadAnalyzer(w http.ResponseWriter, r *http.Request, replication, collection string, dataCenter string) (path string, err error) {
2018-05-28 06:53:10 +00:00
//Default handle way for http multipart
if r.Method == "PUT" {
path = r.URL.Path
2018-05-28 06:53:10 +00:00
}
return
}