LinkUp-P2P-Chat/chatBot/commands/test-audio.js
Raven Scott 7350d134a1 update
2024-06-15 03:20:52 -04:00

10 lines
367 B
JavaScript

export default {
handler: function(bot, args, message) {
// Specify the path to the audio file you want to send
const audioFilePath = '/to/file/path.mp3'; // Replace with the actual audio file path
const audioType = 'audio';
// Send the audio message using the bot instance
bot.sendAudioMessage(audioFilePath, audioType);
}
};