1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-03 18:10:12 +02:00
seaweedfs/weed/s3api/s3api_status_handlers.go

12 lines
284 B
Go

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{}, "")
}