NotFound 辅助函数:404 Not Found
(w http.ResponseWriter, message string)
| 94 | |
| 95 | // NotFound 辅助函数:404 Not Found |
| 96 | func NotFound(w http.ResponseWriter, message string) { |
| 97 | Error(w, http.StatusNotFound, "not_found", message) |
| 98 | } |
| 99 | |
| 100 | // InternalError 辅助函数:500 Internal Server Error |
| 101 | func InternalError(w http.ResponseWriter, message string) { |