Skip to content

opticstream.cli

main()

Entry point for the opticstream console script.

Importing the command modules here ensures that all commands are registered with the shared App instance before the CLI runs.

Source code in opticstream/cli/__init__.py
20
21
22
23
24
25
26
27
28
def main() -> None:
    """
    Entry point for the `opticstream` console script.

    Importing the command modules here ensures that all commands are
    registered with the shared App instance before the CLI runs.
    """

    app()