mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-15 17:59:42 +00:00
skyvern run mcp cli (#2039)
This commit is contained in:
parent
4e7dd87f99
commit
09c5d10817
1 changed files with 7 additions and 0 deletions
|
@ -8,6 +8,8 @@ import typer
|
|||
from skyvern.utils import migrate_db
|
||||
|
||||
app = typer.Typer()
|
||||
run_app = typer.Typer()
|
||||
app.add_typer(run_app, name="run")
|
||||
|
||||
|
||||
def command_exists(command: str) -> bool:
|
||||
|
@ -125,3 +127,8 @@ def init(
|
|||
@app.command(name="migrate")
|
||||
def migrate() -> None:
|
||||
migrate_db()
|
||||
|
||||
|
||||
@run_app.command(name="mcp")
|
||||
def run_mcp() -> None:
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue