using System.Threading.Tasks;
using GiphyDotNet.Manager;
using GiphyDotNet.Model.Parameters;
public static void Main()
Console.WriteLine("Hello World");
[Command("cat"), Summary("Displays a random cat gif.")]
var gifUrl = string.Empty;
var giphy = new Giphy(Properties.Settings.Default.GiphyToken);
var gifResult = await giphy.RandomGif(new RandomParameter()
gifUrl = gifResult.Data.ImageUrl;
Embed embd = new EmbedBuilder()
await ReplyAsync(string.Empty, embed: embd);