G
2025-12-09 12:40:55 -05:00
|
|
|
# flake8: noqa: F401
|
|
|
|
|
"""
|
G
2025-12-09 14:48:30 -05:00
|
|
|
This module contains all the CLI bindings for the ria package.
|
G
2025-12-09 12:40:55 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from .capture import capture
|
|
|
|
|
from .combine import combine
|
|
|
|
|
from .convert import convert
|
|
|
|
|
|
|
|
|
|
# Import all command functions
|
|
|
|
|
from .discover import discover
|
M
2025-12-11 16:53:26 -05:00
|
|
|
from .generate import generate
|
G
2025-12-09 14:38:49 -05:00
|
|
|
|
|
|
|
|
# from .generate import generate
|
G
2025-12-09 12:40:55 -05:00
|
|
|
from .init import init
|
|
|
|
|
from .split import split
|
|
|
|
|
from .transform import transform
|
|
|
|
|
from .transmit import transmit
|
|
|
|
|
from .view import view
|
|
|
|
|
|
|
|
|
|
# Aliases
|
G
2025-12-11 15:12:01 -05:00
|
|
|
synth = generate
|
G
2025-12-09 12:40:55 -05:00
|
|
|
|
|
|
|
|
# All commands will be automatically registered by cli.py
|
|
|
|
|
# Commands must be click.Command instances
|