Skyvern/skyvern/cli/__init__.py
Prakash Maheshwaran a7ff5aaade
Some checks are pending
Run tests and pre-commit / test (push) Waiting to run
Run tests and pre-commit / fe-lint-build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Sync to skyvern-cloud / sync (push) Waiting to run
added new all in one setup CLI Skyvern quickstart (#2480)
2025-05-27 01:54:31 -04:00

20 lines
455 B
Python

"""Skyvern CLI package."""
__all__ = [
"cli_app",
"quickstart_app",
"run_app",
"workflow_app",
"tasks_app",
"docs_app",
"status_app",
"init_app",
]
from .commands import cli_app, init_app # init_app is defined in commands.py
from .docs import docs_app
from .quickstart import quickstart_app
from .run_commands import run_app
from .status import status_app
from .tasks import tasks_app
from .workflow import workflow_app