2021-05-24 13:48:53 +02:00
|
|
|
const Handlers = [
|
2022-05-15 13:39:45 +02:00
|
|
|
require('./detect-soleol'),
|
|
|
|
|
require('./detect-fdsp')
|
2021-05-24 13:48:53 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
function init () {
|
|
|
|
|
return Handlers.map(Handler => new Handler());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
Handlers,
|
|
|
|
|
init
|
|
|
|
|
}
|