forked from p15670423/monkey
Island: Add docstring to Deployment
This commit is contained in:
parent
89c24232c0
commit
3512ed0b26
|
@ -2,6 +2,14 @@ from enum import Enum
|
||||||
|
|
||||||
|
|
||||||
class Deployment(Enum):
|
class Deployment(Enum):
|
||||||
|
"""
|
||||||
|
An Enum representing the different ways the Island can be deployed
|
||||||
|
|
||||||
|
The Infection Monkey Island can be deployed on a variety of different platforms via different
|
||||||
|
packaging mechanisms. This Enum represents the different ways that the Island can be deployed.
|
||||||
|
The value of each member is the member's name in all lower-case characters.
|
||||||
|
"""
|
||||||
|
|
||||||
DEVELOP = "develop"
|
DEVELOP = "develop"
|
||||||
WINDOWS = "windows"
|
WINDOWS = "windows"
|
||||||
APPIMAGE = "appimage"
|
APPIMAGE = "appimage"
|
||||||
|
|
Loading…
Reference in New Issue