10 lines
249 B
Python
10 lines
249 B
Python
# This file was auto-generated by Fern from our API Definition.
|
|
|
|
import enum
|
|
|
|
|
|
class SkyvernEnvironment(enum.Enum):
|
|
PRODUCTION = "https://api.skyvern.com"
|
|
STAGING = "https://api-staging.skyvern.com"
|
|
DEVELOPMENT = "http://localhost:8000"
|