Skyvern/skyvern/__main__.py
Marc Kelechava ad29771451
Some checks are pending
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
feat: add CLI telemetry to close PostHog blind spot (#5491)
2026-04-13 23:01:08 -07:00

14 lines
405 B
Python

def main() -> None:
from skyvern._cli_bootstrap import configure_cli_bootstrap_logging # noqa: PLC0415
configure_cli_bootstrap_logging()
from skyvern.cli.commands import cli_app # noqa: PLC0415
from skyvern.cli.core.telemetry import register_cli_telemetry_flush # noqa: PLC0415
register_cli_telemetry_flush()
cli_app() # type: ignore
if __name__ == "__main__":
main()