0
0
Fork 0

Remove development ping endpoint

This commit is contained in:
Oliver-Akins 2023-02-19 20:41:49 -07:00
parent 60eaad47c6
commit 57e4843976

View file

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