Created 辅助函数:发送 201 Created 响应
(w http.ResponseWriter, data any)
| 79 | |
| 80 | // Created 辅助函数:发送 201 Created 响应 |
| 81 | func Created(w http.ResponseWriter, data any) { |
| 82 | JSON(w, http.StatusCreated, data) |
| 83 | } |
| 84 | |
| 85 | // NoContent 辅助函数:发送 204 No Content 响应 |
| 86 | func NoContent(w http.ResponseWriter) { |