From e00ef21db173940f8ae752196a07e71e24590e12 Mon Sep 17 00:00:00 2001 From: Kenneth Endfinger Date: Fri, 24 Dec 2021 02:00:16 -0500 Subject: [PATCH] Core: Add back leaderboard command. --- .../cloud/kubelet/foundation/core/features/stats/StatsFeature.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt b/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt index 48a2dc3..45be4d6 100644 --- a/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt +++ b/foundation-core/src/main/kotlin/cloud/kubelet/foundation/core/features/stats/StatsFeature.kt @@ -15,6 +15,7 @@ class StatsFeature : Feature() { override fun enable() { chatLogStore = persistence.value.store("chat-logs") + registerCommandExecutor("leaderboard", LeaderboardCommand()) registerCommandExecutor("pstore", PersistentStoreCommand(this)) }