mrmBot-Matrix/commands/queue.js

10 lines
248 B
JavaScript
Raw Normal View History

const soundPlayer = require("../utils/soundplayer.js");
exports.run = async (message) => {
2020-07-06 21:39:56 +00:00
await soundPlayer.queue(message);
};
exports.aliases = ["q"];
exports.category = 7;
exports.help = "Shows the current queue";
exports.requires = "sound";