sh_cpl/src_old/sh_edraft/environment/model/environment_name.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'