mirror of
https://github.com/harivansh-afk/veet-code.git
synced 2026-04-17 12:04:16 +00:00
/oneshot cli
This commit is contained in:
parent
0f4d4caf06
commit
253d26d8c7
3 changed files with 597 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue