Skip to content
Snippets Groups Projects
import_sites.py 229 B
import typer

app: typer.Typer = typer.Typer()


@app.command()
def import_sites():
    """Import sites from a source."""
    # TODO: Implement this CLI command to import sites from a source.
    typer.echo("Importing sites...")