Alchemy.Embed.send
You're seeing just the macro
send
, go back to Alchemy.Embed module for more information.
Sends an embed to the same channel as the message triggering a command.
This macro can't be used outside of Alchemy.Cogs
commands.
See Alchemy.Client.send_message/3
for a list of options that can be
passed to this macro.
Examples
Cogs.def blue do
%Embed{}
|> color(0x1d3ad1)
|> description("Hello!")
|> Embed.send("Here's an embed, and a file", file: "foo.txt")
end