From ebe61e187ece210c98dc2f840f5422450ae62403 Mon Sep 17 00:00:00 2001 From: snowy Date: Thu, 29 Feb 2024 01:09:16 +0800 Subject: [PATCH] first commit --- plugins/liteyuki_plugin_hello/__init__.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 plugins/liteyuki_plugin_hello/__init__.py diff --git a/plugins/liteyuki_plugin_hello/__init__.py b/plugins/liteyuki_plugin_hello/__init__.py deleted file mode 100644 index 618de7df..00000000 --- a/plugins/liteyuki_plugin_hello/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -from nonebot import on_command -from nonebot.rule import to_me - -hello = on_command('hello', aliases={'你好'}, rule=to_me()) - - -@hello.handle() -async def handle_first_receive(bot, event, state): - await hello.finish('Hello, world!')