mirror of
https://github.com/minio/minio.git
synced 2025-02-23 19:42:30 -05:00
Merge pull request #41 from fkautz/pr_out_cosmetic_change_sorting_routes
This commit is contained in:
commit
0de3dea797
@ -42,13 +42,14 @@ func HttpHandler(storage mstorage.Storage) http.Handler {
|
||||
api := minioApi{
|
||||
storage: storage,
|
||||
}
|
||||
|
||||
mux.HandleFunc("/", api.listBucketsHandler).Methods("GET")
|
||||
mux.HandleFunc("/{bucket}", api.putBucketHandler).Methods("PUT")
|
||||
mux.HandleFunc("/{bucket}", api.listObjectsHandler).Methods("GET")
|
||||
mux.HandleFunc("/{bucket}", api.putBucketHandler).Methods("PUT")
|
||||
mux.HandleFunc("/{bucket}/", api.listObjectsHandler).Methods("GET")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.getObjectHandler).Methods("GET")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.putObjectHandler).Methods("PUT")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.headObjectHandler).Methods("HEAD")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.putObjectHandler).Methods("PUT")
|
||||
return mux
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user