2023-06-17 04:08:50 +00:00
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
// This handler is executed when the router cannot match any route
|
|
|
|
func NotFound(w http.ResponseWriter, r *http.Request) {
|
2023-06-17 22:41:07 +00:00
|
|
|
http.Error(w, "Invalid url", http.StatusBadRequest)
|
2023-06-17 04:08:50 +00:00
|
|
|
}
|