aboutsummaryrefslogtreecommitdiff
path: root/weed/s3api/s3api_status_handlers.go
blob: e5d8b96b8bee0b98fb724782d07552de44c4feb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
package s3api

import (
	"github.com/seaweedfs/seaweedfs/weed/s3api/s3err"
	"net/http"
)

func (s3a *S3ApiServer) StatusHandler(w http.ResponseWriter, r *http.Request) {
	// write out the response code and content type header
	s3err.WriteResponse(w, r, http.StatusOK, []byte{}, "")
}