mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
11 lines
256 B
C#
11 lines
256 B
C#
using Discord;
|
|
|
|
namespace NadekoBot.Extensions
|
|
{
|
|
public static class MusicExtensions
|
|
{
|
|
public static EmbedAuthorBuilder WithMusicIcon(this EmbedAuthorBuilder eab) =>
|
|
eab.WithIconUrl("http://i.imgur.com/nhKS3PT.png");
|
|
}
|
|
}
|