diff options
Diffstat (limited to 'src/main/kotlin/AllModules.kt')
-rw-r--r-- | src/main/kotlin/AllModules.kt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/kotlin/AllModules.kt b/src/main/kotlin/AllModules.kt new file mode 100644 index 0000000..9befea9 --- /dev/null +++ b/src/main/kotlin/AllModules.kt @@ -0,0 +1,11 @@ +package moe.nea.ultranotifier + +import moe.nea.ultranotifier.commands.Commands +import moe.nea.ultranotifier.event.SubscriptionTarget + +object AllModules { + val allModules: List<SubscriptionTarget> = listOf( + ChatStore, + Commands + ) +} |