package handler import ( "hamlogger/internal/router" "net/http" ) func (hand *Handler) NotFound(ctx *router.Context) { ctx.SetStatus(http.StatusNotFound) ctx.SendText("Route not found") }