2019-03-20 03:45:23 +08:00
|
|
|
import * as mpd from "./mpd.js";
|
2019-03-21 17:32:58 +08:00
|
|
|
import * as player from "./player.js";
|
2019-03-20 05:56:39 +08:00
|
|
|
import * as art from "./art.js";
|
2019-03-20 03:45:23 +08:00
|
|
|
|
|
|
|
async function init() {
|
|
|
|
await mpd.init();
|
2019-03-21 17:32:58 +08:00
|
|
|
player.init();
|
2019-03-20 03:45:23 +08:00
|
|
|
window.mpd = mpd;
|
|
|
|
}
|
|
|
|
|
|
|
|
init();
|