11 lines
340 B
Python
11 lines
340 B
Python
"""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"]
|