Files
elf/cli.py
T
2025-07-09 19:46:32 +08:00

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()