Initial commit

This commit is contained in:
2026-01-30 13:17:42 +02:00
commit 580d27028b
19 changed files with 335 additions and 0 deletions

16
uv_app/__main__.py Normal file
View File

@@ -0,0 +1,16 @@
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()