"""Entrypoint to using airflow.""" import typer from airflow_tools.cli.deploy import app as deploy_app app: typer.Typer = typer.Typer() app.add_typer(deploy_app) if __name__ == "__main__": app()