You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 196B

1234567891011
  1. var player = require("./player.js");
  2. exports.init = function(app) {
  3. player.init(app);
  4. }
  5. exports.playFile = function(path, cb) {
  6. player.play(path, cb);
  7. }
  8. exports.isPlaying = player.isPlaying;