import typer

app: typer.Typer = typer.Typer()


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