sh_cpl/src_old/sh_edraft/environment/model/environment_name.py
2021-03-03 10:47:52 +01:00

10 lines
164 B
Python

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