You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
308 B
13 lines
308 B
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) {
|
|
//Default handle way for http multipart
|
|
if r.Method == "PUT" {
|
|
path = r.URL.Path
|
|
}
|
|
return
|
|
}
|