17 lines
281 B
Python
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()
|