forked from p15670423/monkey
Common: Fix docstring format in PluginConfiguration
This commit is contained in:
parent
f941c2aa35
commit
856ce4925b
|
@ -30,22 +30,24 @@ class PluginConfiguration:
|
|||
"""
|
||||
A configuration for plugins
|
||||
|
||||
:param name: Name of the plugin.
|
||||
Example: "ransomware"
|
||||
:param options: Any other information/configuration fields relevant to the plugin.
|
||||
Example: {
|
||||
"encryption": {
|
||||
"enabled": True,
|
||||
"directories": {
|
||||
"linux_target_dir": "~/this_dir",
|
||||
"windows_target_dir": "C:\that_dir"
|
||||
Attributes:
|
||||
:param name: Name of the plugin
|
||||
Example: "ransomware"
|
||||
:param options: Any other information/configuration fields relevant to the plugin
|
||||
Example: {
|
||||
"encryption": {
|
||||
"enabled": True,
|
||||
"directories": {
|
||||
"linux_target_dir": "~/this_dir",
|
||||
"windows_target_dir": "C:\that_dir"
|
||||
},
|
||||
},
|
||||
},
|
||||
"other_behaviors": {
|
||||
"readme": True
|
||||
},
|
||||
}
|
||||
"other_behaviors": {
|
||||
"readme": True
|
||||
},
|
||||
}
|
||||
"""
|
||||
|
||||
name: str
|
||||
options: Dict
|
||||
|
||||
|
|
Loading…
Reference in New Issue