aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/cc/woverflow/chatting/command/ChattingCommand.kt
blob: 0ba8bd72064b46666baf4ad48527f80f03793f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 {
    companion object {
        @Main
        fun main() {
            ChattingConfig.openGui()
        }
    }
}