0
0
Fork 0
Chatman/src/endpoints/ping.ts
2022-12-23 15:19:37 -06:00

10 lines
No EOL
180 B
TypeScript

import { ServerRoute } from "@hapi/hapi";
const route: ServerRoute = {
method: `*`, path: `/ping`,
options: {},
async handler() {
return `pong!`;
},
};
export default route;