forked from p15670423/monkey
Common: Add docstring to ExploitationOptionsConfiguration dataclass
This commit is contained in:
parent
643896bb5b
commit
6307acb11b
|
@ -106,6 +106,13 @@ class NetworkScanConfiguration:
|
|||
|
||||
@dataclass(frozen=True)
|
||||
class ExploitationOptionsConfiguration:
|
||||
"""
|
||||
A configuration for exploitation options
|
||||
|
||||
Attributes:
|
||||
:param http_ports: HTTP ports to scan
|
||||
"""
|
||||
|
||||
http_ports: Tuple[int, ...]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue