Remove ping endpoint

This commit is contained in:
Oliver Akins 2022-08-09 19:09:26 -06:00
parent 233c1c4da6
commit 29eb4cc933
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

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;