sh_cpl/src/cpl/environment/environment_name_enum.py

10 lines
164 B
Python

from enum import Enum
class EnvironmentName(Enum):
production = 'production'
staging = 'staging'
testing = 'testing'
development = 'development'