This commit is contained in:
dingfeng.wong
2025-07-09 19:46:32 +08:00
parent ff0bcb38e4
commit a8db36fa73
4 changed files with 151 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import typer
from rich.console import Console
app = typer.Typer()
console = Console()
@app.command()
def hello():
console.print("Hello World!")
if __name__ == "__main__":
app()