12 lines
188 B
Python
12 lines
188 B
Python
import typer
|
|
from rich.console import Console
|
|
|
|
app = typer.Typer()
|
|
console = Console()
|
|
|
|
@app.command()
|
|
def hello():
|
|
console.print("Hello World!")
|
|
|
|
if __name__ == "__main__":
|
|
app() |