forked from p15670423/monkey
Common: Add a docstring to OperatingSystems
This commit is contained in:
parent
2eb1691030
commit
a3db4142bf
|
@ -2,5 +2,12 @@ from enum import Enum
|
|||
|
||||
|
||||
class OperatingSystems(Enum):
|
||||
"""
|
||||
An Enum representing all supported operating systems
|
||||
|
||||
This Enum represents all operating systems that Infection Monkey supports. The value of each
|
||||
member is the member's name in all lower-case characters.
|
||||
"""
|
||||
|
||||
LINUX = "linux"
|
||||
WINDOWS = "windows"
|
||||
|
|
Loading…
Reference in New Issue