seaweedfs/weed/s3api/s3api_status_handlers.go

9 lines
205 B
Go
Raw Normal View History

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)
}