From 2157908975096c5107da0bca98b93ab88e172d93 Mon Sep 17 00:00:00 2001 From: Endkind Date: Wed, 18 Jun 2025 14:27:02 +0200 Subject: [PATCH] =?UTF-8?q?f=C3=BCge=20Beispielmodul=20hinzu?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/example/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/example/__init__.py diff --git a/modules/example/__init__.py b/modules/example/__init__.py new file mode 100644 index 0000000..26fe89a --- /dev/null +++ b/modules/example/__init__.py @@ -0,0 +1,11 @@ +from ModuBotCore.modules import BaseModule + + +class ExampleModule(BaseModule): + NAME = "Example Module" + + def on_enable(self): + pass + + def on_disable(self): + pass