Island: Add docstring to Deployment

This commit is contained in:
Mike Salvatore 2022-08-03 13:16:15 -04:00
parent 89c24232c0
commit 3512ed0b26
1 changed files with 8 additions and 0 deletions

View File

@ -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"