mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-04-28 11:30:03 +00:00
- Create messaging/platforms/ (base, discord, telegram, factory) - Create messaging/rendering/ (discord_markdown, telegram_markdown) - Create messaging/trees/ (data, repository, processor, queue_manager) - Organize tests/ into api/, providers/, messaging/, cli/, config/ - Add backward-compatible re-exports at old locations - Update handler.py and test_messaging_factory.py imports - Fix Telegram type hints for TELEGRAM_AVAILABLE=False case - Fix Python 3 except syntax in discord_markdown Co-authored-by: Ali Khokhar <alishahryar2@gmail.com>
21 lines
474 B
Python
21 lines
474 B
Python
"""Backward-compatible re-export. Use messaging.rendering.telegram_markdown for new code."""
|
|
|
|
from .rendering.telegram_markdown import (
|
|
escape_md_v2,
|
|
escape_md_v2_code,
|
|
escape_md_v2_link_url,
|
|
mdv2_bold,
|
|
mdv2_code_inline,
|
|
format_status,
|
|
render_markdown_to_mdv2,
|
|
)
|
|
|
|
__all__ = [
|
|
"escape_md_v2",
|
|
"escape_md_v2_code",
|
|
"escape_md_v2_link_url",
|
|
"mdv2_bold",
|
|
"mdv2_code_inline",
|
|
"format_status",
|
|
"render_markdown_to_mdv2",
|
|
]
|