From 57e4843976b29801861827857c5eaa1e567c829d Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sun, 19 Feb 2023 20:41:49 -0700 Subject: [PATCH] Remove development ping endpoint --- src/endpoints/ping.ts | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/endpoints/ping.ts diff --git a/src/endpoints/ping.ts b/src/endpoints/ping.ts deleted file mode 100644 index f822811..0000000 --- a/src/endpoints/ping.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { ServerRoute } from "@hapi/hapi"; - -const route: ServerRoute = { - method: `*`, path: `/ping`, - options: {}, - async handler() { - return `pong!`; - }, -}; -export default route; \ No newline at end of file