6 lines
69 B
Python
6 lines
69 B
Python
import click
|
|
|
|
|
|
@click.command()
|
|
def cli():
|
|
print("Hello, world")
|