From bbcfb6d445c2fdf9d9e893c7b4a12ad20be204e2 Mon Sep 17 00:00:00 2001 From: taylor <=> Date: Sat, 12 Oct 2024 17:22:21 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E4=BF=AE=E6=94=B9=E6=A8=A1=E5=9D=97?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maubot.yaml | 2 +- maubot_llmplus/__init__.py | 1 + aibot.py => maubot_llmplus/aibot.py | 0 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 maubot_llmplus/__init__.py rename aibot.py => maubot_llmplus/aibot.py (100%) diff --git a/maubot.yaml b/maubot.yaml index 77f922b..75360a1 100644 --- a/maubot.yaml +++ b/maubot.yaml @@ -3,7 +3,7 @@ id: cn.tayxie.llmplus version: 1.0.0 license: MIT modules: - - aibot + - maubot_llmplus main_class: AiBotPlugin config: true extra_files: diff --git a/maubot_llmplus/__init__.py b/maubot_llmplus/__init__.py new file mode 100644 index 0000000..ecdcadc --- /dev/null +++ b/maubot_llmplus/__init__.py @@ -0,0 +1 @@ +from maubot_llmplus.aibot import AiBotPlugin diff --git a/aibot.py b/maubot_llmplus/aibot.py similarity index 100% rename from aibot.py rename to maubot_llmplus/aibot.py