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