15 lines
170 B
Python

import typer
app = typer.Typer()
@app.command()
def synth():
print("Synth!")
@app.command()
def build():
print("Build!")
if __name__ == "__main__":
app()