feat: add new command

This commit is contained in:
2024-10-11 17:13:20 +08:00
parent 1c3f582c86
commit f783f8b4ec
1 file changed
+4
@@ -21,4 +21,8 @@ class TodayEatCommand : BaseCommand() {
class TodayDrinkCommand : BaseCommand() { class TodayDrinkCommand : BaseCommand() {
override val commandNames = listOf("今天喝什么") override val commandNames = listOf("今天喝什么")
override suspend fun executeGroup(listener: OneBotListener, message: GroupMessage, args: List<String>) {
message.reply("你喝牛魔呢")
}
} }