diff options
Diffstat (limited to 'src/main/kotlin/AllModules.kt')
-rw-r--r-- | src/main/kotlin/AllModules.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/kotlin/AllModules.kt b/src/main/kotlin/AllModules.kt index 9befea9..1626bea 100644 --- a/src/main/kotlin/AllModules.kt +++ b/src/main/kotlin/AllModules.kt @@ -2,10 +2,12 @@ package moe.nea.ultranotifier import moe.nea.ultranotifier.commands.Commands import moe.nea.ultranotifier.event.SubscriptionTarget +import moe.nea.ultranotifier.gui.ScreenUtil object AllModules { val allModules: List<SubscriptionTarget> = listOf( ChatStore, - Commands + Commands, + ScreenUtil, ) } |