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

import (
	"github.com/chrislusf/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{}, "")
}