Files
elf/cli.py
T

12 lines
188 B
Python
Raw Normal View History

2025-07-09 19:46:32 +08:00
import typer
from rich.console import Console
app = typer.Typer()
console = Console()
@app.command()
def hello():
console.print("Hello World!")
if __name__ == "__main__":
app()