6 lines
74 B
Python
6 lines
74 B
Python
import click
|
|
|
|
|
|
@click.command()
|
|
def test():
|
|
click.echo("Hello world")
|