Core functionality for new aiterp.net servers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
244 B

7 years ago
  1. package response
  2. import (
  3. "net/http"
  4. )
  5. // Empty makes a 204 response without a body
  6. func Empty(writer http.ResponseWriter) {
  7. writer.Header().Set("Content-Type", "text/html; charset=utf-8")
  8. writer.WriteHeader(204)
  9. writer.Write([]byte{})
  10. }