Files
cpl/src/sh_edraft/hosting/model/environment_name.py
2020-11-26 11:20:21 +01:00

10 lines
164 B
Python

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