Initial commit: mycli toolkit with all commands

This commit is contained in:
Zhengshou Lai
2026-04-13 11:38:01 +08:00
commit ab8067f0c5
53 changed files with 1240 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
"""MyCLI subcommands."""
from . import pdf, image, latex, video, bib, utils
from .env import env_cmd
from .ssh import ssh_cmd
from .git import git_cmd
from .self_mgmt import self_cmd
from .config_cmd import config_cmd
__all__ = ["pdf", "image", "latex", "video", "bib", "utils", "env_cmd", "ssh_cmd", "git_cmd", "self_cmd", "config_cmd"]