ria-toolkit-oss/src/ria_toolkit_oss_cli/ria_toolkit_oss/commands.py
M madrigal 1005228d69
Some checks failed
Build Sphinx Docs Set / Build Docs (pull_request) Successful in 15m55s
Build Project / Build Project (3.10) (pull_request) Successful in 59s
Build Project / Build Project (3.11) (pull_request) Successful in 58s
Build Project / Build Project (3.12) (pull_request) Successful in 56s
Test with tox / Test with tox (3.12) (pull_request) Successful in 1m4s
Test with tox / Test with tox (3.11) (pull_request) Successful in 3m8s
Test with tox / Test with tox (3.10) (pull_request) Failing after 46s
Linting and updated poetry.lock
2026-04-02 11:07:12 -04:00

29 lines
660 B
Python

# flake8: noqa: F401
"""
This module contains all the CLI bindings for the ria package.
"""
from .annotate import annotate
from .campaign import campaign
from .capture import capture
from .combine import combine
from .convert import convert
# Import all command functions
from .discover import discover
from .generate import generate
# from .generate import generate
from .init import init
from .serve import serve
from .split import split
from .transform import transform
from .transmit import transmit
from .view import view
# Aliases
synth = generate
# All commands will be automatically registered by cli.py
# Commands must be click.Command instances