mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-17 17:56:10 +00:00
8 lines
164 B
JavaScript
8 lines
164 B
JavaScript
"use strict";
|
|
const LocalRadioPlayer = require('../LocalRadioPlayer');
|
|
|
|
function createRadio() {
|
|
return new LocalRadioPlayer();
|
|
}
|
|
module.exports = createRadio;
|