14 lines
152 B
Python
14 lines
152 B
Python
|
import click
|
||
|
|
||
|
|
||
|
@click.group()
|
||
|
def client():
|
||
|
click.echo("Hola!")
|
||
|
|
||
|
@client.command()
|
||
|
def test():
|
||
|
pass
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
client()
|