portfolio/error-handlers.go
darius 9525329c8a Ent orm added
Error handler split file
Git ignore added
temporary test endpoints added
2024-02-14 00:08:14 +01:00

20 lines
416 B
Go

package main
import "net/http"
func InternalServerErrorHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
_, err := w.Write([]byte("500 Internal Server Error"))
if err != nil {
return
}
}
func NotFoundHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusNotFound)
_, err := w.Write([]byte("404 Not Found"))
if err != nil {
return
}
}