blob: 7fcd4a84a1cd011febffe37643057c2d62dfb20f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cc.woverflow.chatting.command
import cc.polyfrost.oneconfig.utils.commands.annotations.Command
import cc.polyfrost.oneconfig.utils.commands.annotations.Main
import cc.woverflow.chatting.Chatting
import cc.woverflow.chatting.config.ChattingConfig
@Command(value = Chatting.ID, description = "Access the " + Chatting.NAME + " GUI.")
class ChattingCommand {
@Main
fun main() {
ChattingConfig.openGui()
}
}
|