10 lines
164 B
Python
10 lines
164 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class EnvironmentName(Enum):
|
||
|
|
||
|
production = 'production'
|
||
|
staging = 'staging'
|
||
|
testing = 'testing'
|
||
|
development = 'development'
|