Initial commit
This commit is contained in:
16
uv_app/__main__.py
Normal file
16
uv_app/__main__.py
Normal 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()
|
||||
Reference in New Issue
Block a user