forked from p15670423/monkey
Island: Add Deployment Enum
This commit is contained in:
parent
c7be5f6c68
commit
117b1ebe5a
|
@ -0,0 +1,8 @@
|
|||
from enum import Enum
|
||||
|
||||
|
||||
class Deployment(Enum):
|
||||
DEVELOP = "develop"
|
||||
WINDOWS = "windows"
|
||||
APPIMAGE = "appimage"
|
||||
DOCKER = "docker"
|
Loading…
Reference in New Issue