From 4ab56bd98aa93cd0979925417235f07d44dbb959 Mon Sep 17 00:00:00 2001 From: RTAkland Date: Fri, 6 Sep 2024 18:03:25 +0800 Subject: [PATCH] feat: add nslookup command --- src/main/kotlin/cn/rtast/fancybot/FancyBot.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/cn/rtast/fancybot/FancyBot.kt b/src/main/kotlin/cn/rtast/fancybot/FancyBot.kt index 439d3e5..bf6894d 100644 --- a/src/main/kotlin/cn/rtast/fancybot/FancyBot.kt +++ b/src/main/kotlin/cn/rtast/fancybot/FancyBot.kt @@ -17,6 +17,7 @@ import cn.rtast.fancybot.commands.JrrpCommand import cn.rtast.fancybot.commands.MCPingCommand import cn.rtast.fancybot.commands.MusicCommand import cn.rtast.fancybot.commands.MyPointCommand +import cn.rtast.fancybot.commands.NslookupCommand import cn.rtast.fancybot.commands.PixivCommand import cn.rtast.fancybot.commands.QRCodeCommand import cn.rtast.fancybot.commands.RUACommand @@ -104,7 +105,7 @@ val commands = listOf( MCPingCommand(), HelpCommand(), WeatherCommand(), CigaretteCommand(), RemakeCommand(), PixivCommand(), - RUACommand() + RUACommand(), NslookupCommand() ) suspend fun main() {