12 lines
194 B
Go
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")
|
|
}
|