mrmBot-Matrix/commands/nowplaying.js

10 lines
271 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.playing(message);
};
exports.aliases = ["playing", "np"];
exports.category = 7;
exports.help = "Shows the currently playing song";
exports.requires = "sound";