From 760bcf26a072201ee3516e62332d4f053a737f73 Mon Sep 17 00:00:00 2001 From: riku6460 <17585784+riku6460@users.noreply.github.com> Date: Sun, 2 Jul 2023 09:54:26 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"ServerStatsService=20=E3=82=92?= =?UTF-8?q?=E7=84=A1=E5=8A=B9=E5=8C=96=20(#91)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit b4f720cab697c3792cfd63fc2ed2570d509a2c25. --- packages/backend/src/boot/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/boot/common.ts b/packages/backend/src/boot/common.ts index a3bbd6bfa7..3995545d7f 100644 --- a/packages/backend/src/boot/common.ts +++ b/packages/backend/src/boot/common.ts @@ -22,7 +22,7 @@ export async function server() { app.get(ChartManagementService).start(); app.get(JanitorService).start(); app.get(QueueStatsService).start(); - // app.get(ServerStatsService).start(); + app.get(ServerStatsService).start(); } return app;