Files
Dorod-Sky/skyvern/cli/tasks.py
Prakash Maheshwaran ad2ea8d069 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>
2025-05-20 16:43:33 -07:00

14 lines
266 B
Python

"""Task-related CLI helpers."""
import typer
from .console import console
tasks_app = typer.Typer()
@tasks_app.command()
def placeholder() -> None:
"""Placeholder command for task management."""
console.print("Task operations are not yet implemented.")