diff --git a/pyproject.toml b/pyproject.toml index 7e4fd9a..34fd1bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgram" -version = "1.11.7" +version = "1.11.8" description = "Very friendly BOT API library for Python developers." authors = ["Zaid "] license = "MIT" diff --git a/tgram/__init__.py b/tgram/__init__.py index d96e56c..ee62ce9 100644 --- a/tgram/__init__.py +++ b/tgram/__init__.py @@ -1,5 +1,16 @@ -__all__ = ["types", "TgBot", "handlers", "filters", "compose", "StopPropagation"] -__version__ = "1.11.7" +__all__ = [ + "types", + "TgBot", + "handlers", + "filters", + "compose", + "StopPropagation", + "utils", + "storage", +] +__version__ = "1.11.8" + +from . import filters, utils, storage, handlers, types from .client import TgBot from .sync import compose