Files
mytoolkit/bin/commands/__init__.py
T
Zhengshou Lai ac605c2c17 feat(mytoolkit): add voice command and improve docx post-processing
- Add voice/TTS CLI command via Volcengine WebSocket API
- Inject suppressAutoHyphens into all docx paragraphs in post-process
- Apply post-process fixes to all templates (not just default)
- Update review template: Cambria+SimSun fonts, 11pt for headings
- Sync default/review docx template formatting
2026-05-27 16:17:47 +08:00

12 lines
420 B
Python

"""MyCLI subcommands."""
from . import pdf, image, latex, video, bib, voice
from .env import env_cmd
from .ssh import ssh_cmd
from .git import git_cmd
from .server import server_cmd
from .webpage import webpage_cmd
from .self_mgmt import update_cmd, uninstall_cmd
__all__ = ["pdf", "image", "latex", "video", "bib", "voice", "env_cmd", "ssh_cmd", "git_cmd", "server_cmd", "webpage_cmd", "update_cmd", "uninstall_cmd"]