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):
|
||||
"""
|
||||
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"
|
||||
WINDOWS = "windows"
|
||||
APPIMAGE = "appimage"
|
||||
|
|
Loading…
Reference in New Issue