htmx-patterns/htmx_patterns/cli/cli.py
2024-04-05 20:13:47 -05:00

7 lines
113 B
Python

import typer
from htmx_patterns.cli.api import api_app
app = typer.Typer()
app.add_typer(api_app, name="api")