Files
n08i40k c12beb95e2
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 4m50s
feat: initial commit
2025-11-01 03:10:21 +04:00

13 lines
322 B
Python

"""Reusable components for the Max ↔ Telegram bridge CLI."""
from .config import Config, parse_args
from .max_bridge import list_chats_and_exit, run_bridge
from .storage import ForwardedMessageStore
__all__ = [
"Config",
"parse_args",
"list_chats_and_exit",
"run_bridge",
"ForwardedMessageStore",
]