new: pdm package manager (python) new: workspace for three subprojects new: dream2nix module for packaging new: postgresql and redis images more: and more
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()
|