mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 23:56:24 +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;
|