Version 3.1 InDev

This commit is contained in:
2026-03-16 19:20:27 +02:00
parent 81e6e0a7a2
commit d7a6f43af1
224 changed files with 2168 additions and 14011 deletions

View File

@@ -1,2 +1,11 @@
let thisPackage = require('./package.json');
module.exports = thisPackage.version;
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();
};