2026-03-16 19:20:27 +02:00
|
|
|
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();
|
|
|
|
|
};
|
|
|
|
|
|