diff options
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__)) |