aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/__init__.py
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2021-12-02 10:27:55 +0400
committerGravatar Hassan Abouelela <[email protected]>2021-12-02 10:33:34 +0400
commit4e70005cfbdfae550843695088b65acac0af360f (patch)
tree2ea476da91c515534b8209ce4bb85ee56712975c /botcore/__init__.py
parentMerge pull request #1 from python-discord/mbaruh/setup (diff)
Port Regex Utilities From Python Bot
Diffstat (limited to 'botcore/__init__.py')
-rw-r--r--botcore/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/botcore/__init__.py b/botcore/__init__.py
index e69de29b..c582d0df 100644
--- a/botcore/__init__.py
+++ b/botcore/__init__.py
@@ -0,0 +1,9 @@
+from botcore import (
+ regex,
+)
+
+__all__ = [
+ regex,
+]
+
+__all__ = list(map(lambda module: module.__name__, __all__))