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, - } + }, ); };