Upload tbd

This commit is contained in:
2026-05-10 15:26:31 +00:00
parent 13324428d5
commit 1e36c9e02c
4 changed files with 96 additions and 0 deletions

11
index.js Normal file
View File

@@ -0,0 +1,11 @@
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();
};