aboutsummaryrefslogtreecommitdiff
path: root/weed/s3api/s3api_status_handlers.go
blob: 914c27f40d1ce1ceb1f62babbdbb1b22606fa73a (plain)
1
2
3
4
5
6
7
8
package s3api

import "net/http"

func (s3a *S3ApiServer) StatusHandler(w http.ResponseWriter, r *http.Request) {
	// write out the response code and content type header
	writeSuccessResponseEmpty(w)
}