From cb2b97e6ca92de840038301553cf1430acf1083c Mon Sep 17 00:00:00 2001 From: Interitio Date: Wed, 22 Oct 2025 19:28:53 +1000 Subject: [PATCH] Add exec module --- .gitmodules | 3 +++ src/modules/__init__.py | 6 ++++-- src/modules/exec | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) create mode 160000 src/modules/exec diff --git a/.gitmodules b/.gitmodules index d244e01..aacc0b6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -7,3 +7,6 @@ [submodule "src/modules/hyperfocus"] path = src/modules/hyperfocus url = https://git.thewisewolf.dev/HoloTech/hyperfocus-plugin.git +[submodule "src/modules/exec"] + path = src/modules/exec + url = https://git.thewisewolf.dev/HoloTech/exec-plugin.git diff --git a/src/modules/__init__.py b/src/modules/__init__.py index 62c9bc5..e5b805f 100644 --- a/src/modules/__init__.py +++ b/src/modules/__init__.py @@ -4,6 +4,8 @@ if TYPE_CHECKING: from meta import Bot -async def twitch_setup(bot: 'Bot'): - from . import profiles +async def twitch_setup(bot: "Bot"): + from . import profiles, exec + await profiles.twitch_setup(bot) + await exec.twitch_setup(bot) diff --git a/src/modules/exec b/src/modules/exec new file mode 160000 index 0000000..f0bdbae --- /dev/null +++ b/src/modules/exec @@ -0,0 +1 @@ +Subproject commit f0bdbaed3c5104c12dca84c6ebf43a56bf75b629