From 3512ed0b2693807b9428035c3c6a9481157352eb Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 3 Aug 2022 13:16:15 -0400 Subject: [PATCH] Island: Add docstring to Deployment --- monkey/monkey_island/cc/deployment.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/monkey/monkey_island/cc/deployment.py b/monkey/monkey_island/cc/deployment.py index 0ab378f95..b5bee88a4 100644 --- a/monkey/monkey_island/cc/deployment.py +++ b/monkey/monkey_island/cc/deployment.py @@ -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"