mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-05-01 21:20:19 +00:00
12 lines
237 B
Python
12 lines
237 B
Python
from pathlib import Path
|
|
|
|
|
|
async def run_code(path: Path) -> None:
|
|
# initialize the SkyvernPage object
|
|
|
|
# initialize workflow run context
|
|
|
|
# load the python file and do validation
|
|
|
|
# run the preloaded workflow
|
|
return
|