diff options
author | 2021-12-02 10:27:55 +0400 | |
---|---|---|
committer | 2021-12-02 10:33:34 +0400 | |
commit | 4e70005cfbdfae550843695088b65acac0af360f (patch) | |
tree | 2ea476da91c515534b8209ce4bb85ee56712975c /botcore/__init__.py | |
parent | Merge 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__.py | 9 |
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__)) |