Files
JiboOs/V3.1/build/opt/jibo/Jibo/Skills/jibo-tbd/index.js
2026-03-16 19:20:27 +02: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();
};