2021-08-10 10:42:46 +00:00
|
|
|
package s3api
|
|
|
|
|
|
|
|
import "net/http"
|
|
|
|
|
|
|
|
func (s3a *S3ApiServer) StatusHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
// write out the response code and content type header
|
2021-11-01 01:02:08 +00:00
|
|
|
writeSuccessResponseEmpty(w, r)
|
2021-08-10 10:42:46 +00:00
|
|
|
}
|