summaryrefslogtreecommitdiff
path: root/src/main/kotlin/AllModules.kt
blob: 1626beacf459c3fed1d118cf95ee60dde9ba1f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
		ScreenUtil,
	)
}