skyvern run mcp cli (#2039)
This commit is contained in:
@@ -8,6 +8,8 @@ import typer
|
|||||||
from skyvern.utils import migrate_db
|
from skyvern.utils import migrate_db
|
||||||
|
|
||||||
app = typer.Typer()
|
app = typer.Typer()
|
||||||
|
run_app = typer.Typer()
|
||||||
|
app.add_typer(run_app, name="run")
|
||||||
|
|
||||||
|
|
||||||
def command_exists(command: str) -> bool:
|
def command_exists(command: str) -> bool:
|
||||||
@@ -125,3 +127,8 @@ def init(
|
|||||||
@app.command(name="migrate")
|
@app.command(name="migrate")
|
||||||
def migrate() -> None:
|
def migrate() -> None:
|
||||||
migrate_db()
|
migrate_db()
|
||||||
|
|
||||||
|
|
||||||
|
@run_app.command(name="mcp")
|
||||||
|
def run_mcp() -> None:
|
||||||
|
pass
|
||||||
|
|||||||
Reference in New Issue
Block a user