12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
|
|
const LocalRadioPlayer = require('./LocalRadioPlayer');
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @returns {RadioPlayer}
|
||
|
|
*
|
||
|
|
* i tried to make the radio work as well, coldnt get it to work :(
|
||
|
|
*/
|
||
|
|
module.exports = function createRadio() {
|
||
|
|
return new LocalRadioPlayer();
|
||
|
|
};
|
||
|
|
|