diff --git a/lib/ronin/recon/engine.rb b/lib/ronin/recon/engine.rb index c18eddb..c49afa1 100644 --- a/lib/ronin/recon/engine.rb +++ b/lib/ronin/recon/engine.rb @@ -111,6 +111,18 @@ def initialize(values, workers: WorkerSet.default, yield self if block_given? end + # + # The discovered recon values. + # + # @return [Set] + # The set of discovered recon values. + # + # @api public + # + def values + @graph.nodes + end + # # Runs the recon engine with the given initial values. # @@ -584,18 +596,6 @@ def shutdown! end end - # - # The discovered recon values. - # - # @return [Set] - # The set of discovered recon values. - # - # @api public - # - def values - @graph.nodes - end - end end end