Files
jibo-version/index.js
2026-05-10 15:26:31 +00:00

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();
};