It's Really difficult to understand Module::Pluggable
Do you have a small snippet of code that can help. I just want to import all modules from one folder in my main program.
If you blindly want to import all modules from a folder, take a look at glob and require. This is basically what Module::Pluggable does as well, but maybe you feel more confident in implementing it yourself.