mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-16 18:29:40 +00:00
5 lines
73 B
Python
5 lines
73 B
Python
from enum import StrEnum
|
|
|
|
|
|
class FileStorageType(StrEnum):
|
|
S3 = "s3"
|