InternalError 辅助函数:500 Internal Server Error
(w http.ResponseWriter, message string)
| 99 | |
| 100 | // InternalError 辅助函数:500 Internal Server Error |
| 101 | func InternalError(w http.ResponseWriter, message string) { |
| 102 | Error(w, http.StatusInternalServerError, "internal_error", message) |
| 103 | } |
| 104 | |
| 105 | // Unauthorized 辅助函数:401 Unauthorized |
| 106 | func Unauthorized(w http.ResponseWriter, message string) { |