better users probe
[scpubgit/System-Introspector.git] / lib / System / Introspector / Gatherer.pm
CommitLineData
60e1cc39 1package System::Introspector::Gatherer;
2use Moo;
3use Module::Runtime qw( use_module );
4
5sub gather {
6 my ($self, $class, $args) = @_;
7 return use_module("System::Introspector::$class")
8 ->new($args)
9 ->gather;
10}
11
121;