"""Console script for xsdba."""

from __future__ import annotations

import typer
from rich.console import Console


app = typer.Typer()
console = Console()


@app.command()  # type: ignore[misc]
def main() -> None:
    """Console script for xsdba."""
    console.print(
        "Replace this message by putting your code into xsdba.cli.main",
    )
    console.print("See Typer documentation at https://typer.tiangolo.com/")


if __name__ == "__main__":
    app()
