/oneshot cli

This commit is contained in:
Harivansh Rathi 2025-12-14 16:10:00 -05:00
parent 0f4d4caf06
commit 253d26d8c7
3 changed files with 597 additions and 2 deletions

View file

@ -1 +1,21 @@
# Placeholder
"""CLI entry point for veetcode."""
import typer
from veetcode.app import run_app
app = typer.Typer(
name="veetcode",
help="Terminal-based LeetCode practice with auto-testing",
add_completion=False,
)
@app.command()
def main() -> None:
"""Launch the Veetcode TUI."""
run_app()
if __name__ == "__main__":
app()