sh_cpl/src/cpl/environment/environment_name_enum.py

10 lines
164 B
Python
Raw Normal View History

2020-11-26 11:20:21 +01:00
from enum import Enum
class EnvironmentName(Enum):
production = 'production'
staging = 'staging'
testing = 'testing'
development = 'development'