I found Exporter::Lite is detected as needless by Test::UsedModules if it is used. Following code. ``` package Sample; use Exporter::Lite; our @EXPORT = qw(hello); sub hello { print "hello\n"; } 1; ```
I found Exporter::Lite is detected as needless by Test::UsedModules if it is used.
Following code.