mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-29 04:00:13 +00:00
11 lines
188 B
Python
11 lines
188 B
Python
from enum import StrEnum
|
|
|
|
|
|
class OrganizationAuthTokenType(StrEnum):
|
|
api = "api"
|
|
|
|
|
|
class TaskType(StrEnum):
|
|
general = "general"
|
|
validation = "validation"
|
|
action = "action"
|