From 8f547436da6557cb74d7127eba3cf99629283f02 Mon Sep 17 00:00:00 2001 From: Zaid Date: Mon, 14 Oct 2024 21:49:51 +0300 Subject: [PATCH] Update Tgram to v1.11.8 --- pyproject.toml | 2 +- tgram/__init__.py | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) 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