mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-05-01 21:20:19 +00:00
added py 3.13 and splited the cli and suport for windows and better port handling (#2404)
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
This commit is contained in:
parent
fa81d0292b
commit
ad2ea8d069
17 changed files with 1150 additions and 1264 deletions
13
skyvern/cli/workflow.py
Normal file
13
skyvern/cli/workflow.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
"""Workflow-related CLI helpers."""
|
||||
|
||||
import typer
|
||||
|
||||
from .console import console
|
||||
|
||||
workflow_app = typer.Typer()
|
||||
|
||||
|
||||
@workflow_app.command()
|
||||
def placeholder() -> None:
|
||||
"""Placeholder command for workflow operations."""
|
||||
console.print("Workflow operations are not yet implemented.")
|
||||
Loading…
Add table
Add a link
Reference in a new issue