mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-17 22:36:39 +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;
|