using System.Threading.Tasks; using Discord.Commands; using Geekbot.net.Lib; namespace Geekbot.net.Commands { public class Ping : ModuleBase { [Command("👀", RunMode = RunMode.Async)] [Summary("Look at the bot.")] [Remarks(CommandCategories.Fun)] public async Task Eyes() { await ReplyAsync("S... Stop looking at me... baka!"); } } }