Functions
load_cli_app
Load a CLI application from a module path.
load_cli_app
def load_cli_app(app_path: str, cli: CLIOutput | None = None) -> Any
Load a CLI application from a module path.
Parameters 2
| Name | Type | Default | Description |
|---|---|---|---|
app_path |
str |
— | Module path in format "module.path:attribute_name" (e.g., "bengal.cli:main") |
cli |
CLIOutput | None |
None |
Optional CLIOutput instance (creates new if not provided) |
Returns
The CLI application object (typically a Click group or command)Any
—