/blocklist

This commit is contained in:
2022-11-24 15:36:33 +01:00
parent 317da97cd3
commit a26fb2df12
11 changed files with 285 additions and 30 deletions

View File

@ -21,4 +21,11 @@ export function getSuccessEmbed(): EmbedBuilder {
embed.setTitle("Success");
embed.setColor(0x32d122);
return embed;
}
export function getFailedEmbed(): EmbedBuilder {
const embed = getDefaultEmbed();
embed.setTitle("Failed");
embed.setColor(0xD01B15);
return embed;
}