mirror of
https://github.com/MrUnknownDE/UnknownAI.git
synced 2026-04-09 09:53:44 +02:00
11 lines
448 B
JavaScript
11 lines
448 B
JavaScript
module.exports = (client, message, query, tracks) => {
|
|
message.channel.send({
|
|
embed: {
|
|
color: 'BLUE',
|
|
author: { name: `Here are your search results for ${query}` },
|
|
footer: { text: 'This bot uses a Github project made by Zerio (ZerioDev/Music-bot)' },
|
|
timestamp: new Date(),
|
|
description: `${tracks.map((t, i) => `**${i + 1}** - ${t.title}`).join('\n')}`,
|
|
},
|
|
});
|
|
}; |