Untitled

 avatar
wyc1230
plain_text
a month ago
284 B
8
Indexable
class Profile(StrEnum):
    # These values should be synced with streaming-picking-v2-pydomain/conf/config.ini.
    DEVELOP = "develop"
    PRODUCTION = "production"
    SIMULATION = "simulation"
    MOCK = "mock"

    profile: Profile = Field(env="PROFILE", default=DEFAULT_PROFILE)
Leave a Comment