ws2mpd/demo/index.js

7 lines
143 B
JavaScript
Raw Normal View History

2019-03-19 18:13:15 +08:00
let httpServer = require("http").createServer();
httpServer.listen(8080);
let mod = require("..");
mod.logging(true);
mod.ws2mpd(httpServer);