type EmbedBuilder …
func NewEmbedBuilder() *EmbedBuilder { … }
func (b *EmbedBuilder) Build() common.MessageEmbed { … }
func (b *EmbedBuilder) WithAuthor(name, url, iconUrl string) *EmbedBuilder { … }
func (b *EmbedBuilder) WithColor(color int) *EmbedBuilder { … }
func (b *EmbedBuilder) WithDescription(description string) *EmbedBuilder { … }
func (b *EmbedBuilder) AddField(name, value string, inline bool) *EmbedBuilder { … }
func (b *EmbedBuilder) AddInlineField(name, value string) *EmbedBuilder { … }
func (b *EmbedBuilder) WithFooter(text, iconUrl string) *EmbedBuilder { … }
func (b *EmbedBuilder) WithImage(url string, width, height int) *EmbedBuilder { … }
func (b *EmbedBuilder) WithThumbnail(url string, width, height int) *EmbedBuilder { … }
func (b *EmbedBuilder) WithTimestamp(timestamp time.Time) *EmbedBuilder { … }
func (b *EmbedBuilder) WithTitle(title string) *EmbedBuilder { … }
func (b *EmbedBuilder) AsType(typ discordgo.EmbedType) *EmbedBuilder { … }
func (b *EmbedBuilder) WithURL(url string) *EmbedBuilder { … }
func (b *EmbedBuilder) WithVideo(url string, width, height int) *EmbedBuilder { … }