From e64373979384c82580d7b8db582d48897096b992 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Fri, 22 Mar 2024 17:03:33 -0400 Subject: Add teleport cog --- teleport/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 teleport/__init__.py (limited to 'teleport/__init__.py') diff --git a/teleport/__init__.py b/teleport/__init__.py new file mode 100644 index 0000000..f5b87c9 --- /dev/null +++ b/teleport/__init__.py @@ -0,0 +1,5 @@ +from .teleport import Teleport + + +async def setup(bot): + await bot.add_cog(Teleport(bot)) -- cgit v1.2.3-57-g22cb