Files
hamlogger/internal/handler/notfound.go
Олег Бородин ada2a49a64 initial import of sources
2024-06-18 10:15:22 +02:00

12 lines
194 B
Go

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