6 lines
190 B
JavaScript
6 lines
190 B
JavaScript
|
export default function getNotifier(notifier) {
|
||
|
return new Promise(
|
||
|
resolve => import(`../modules/notifiers/${notifier}.js`).then(
|
||
|
module => resolve(module.start())))
|
||
|
}
|