Simple utilities bot for Telegram. /ping, /whoami and such.
at main 7 lines 187 B view raw
1from importlib.metadata import version 2 3from .bot import PingBot 4 5__version__ = version("telegram-ping-bot") # must match pyproject.toml name 6__version__ = "0.1.0" 7__all__ = ["PingBot"]