10 lines
351 B
JavaScript
10 lines
351 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);
|
|
}
|
|
}; |