UNPKG

@sls-next/core

Version:
8 lines (6 loc) 183 B
import { Event } from "../types"; export const notFound = (event: Event) => { event.res.statusCode = 404; event.res.statusMessage = "Not Found"; event.res.end("Not Found"); };