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