Files
migrations/uv_app/__main__.py
2026-01-30 13:17:42 +02:00

17 lines
281 B
Python

import click
@click.group()
def cli() -> None:
"""Application Command Line Interface."""
@cli.command()
def main() -> None:
"""An example command that prints a message."""
click.echo("This is an example command from uv_app.")
if __name__ == "__main__":
cli()