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
|
|
|
"""
|
|
|
|
|
|
G
2026-02-23 14:09:42 -05:00
|
|
|
from .annotate import annotate
|
2026-03-11 10:27:18 -04:00
|
|
|
from .campaign import campaign
|
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
|
2026-03-11 10:27:18 -04:00
|
|
|
from .serve import serve
|
G
2025-12-09 12:40:55 -05:00
|
|
|
from .split import split
|
|
|
|
|
from .transform import transform
|
|
|
|
|
from .transmit import transmit
|
M
2026-04-02 10:52:31 -04:00
|
|
|
from .view import view
|
G
2025-12-09 12:40:55 -05:00
|
|
|
|
|
|
|
|
# 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
|