sh_cpl/src/cpl/environment/environment_name_enum.py

10 lines
168 B
Python
Raw Normal View History

2020-11-26 11:20:21 +01:00
from enum import Enum
2021-03-12 16:06:30 +01:00
class EnvironmentNameEnum(Enum):
2020-11-26 11:20:21 +01:00
production = 'production'
staging = 'staging'
testing = 'testing'
development = 'development'