From 4e70005cfbdfae550843695088b65acac0af360f Mon Sep 17 00:00:00 2001 From: Hassan Abouelela Date: Thu, 2 Dec 2021 10:27:55 +0400 Subject: Port Regex Utilities From Python Bot --- botcore/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'botcore/__init__.py') 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__)) -- cgit v1.2.3