1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-01 06:40:45 +02:00
seaweedfs/weed/s3api/s3api_status_handlers.go
2021-10-31 18:02:08 -07:00

9 lines
205 B
Go

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