Files
metasploit-gs/lib/rex/parser/parsed_result.rb
T
2021-11-25 13:46:57 +00:00

14 lines
163 B
Ruby

class Rex::Parser::ParsedResult
attr_accessor :host_ids
def initialize
@host_ids = []
end
def record_host(host)
@host_ids << host.id
end
end