From ef5709b6a691570b66a303f4da866bb39dec00bc Mon Sep 17 00:00:00 2001 From: Ean Milligan Date: Tue, 22 Jul 2025 17:02:47 -0400 Subject: [PATCH] deno fmt --- src/endpoints/gets/apiPing.ts | 2 +- src/endpoints/gets/apiStats.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/endpoints/gets/apiPing.ts b/src/endpoints/gets/apiPing.ts index 09a09a0..a4ff74e 100644 --- a/src/endpoints/gets/apiPing.ts +++ b/src/endpoints/gets/apiPing.ts @@ -11,6 +11,6 @@ export const apiPing = (): Response => { status: STATUS_CODE.OK, statusText: STATUS_TEXT[STATUS_CODE.OK], headers, - } + }, ); }; diff --git a/src/endpoints/gets/apiStats.ts b/src/endpoints/gets/apiStats.ts index 3ce81c9..1be8dbc 100644 --- a/src/endpoints/gets/apiStats.ts +++ b/src/endpoints/gets/apiStats.ts @@ -39,6 +39,6 @@ export const apiStats = async (): Promise => { status: STATUS_CODE.OK, statusText: STATUS_TEXT[STATUS_CODE.OK], headers, - } + }, ); };