public async Task <Result> Execute(CommandMetadata metadata, string query) { JObject result = await ParentPlugin.QueryAsync(SourceUrl, query); Embed embed = ParentPlugin.BuildPageEmbed(result); if (embed == null) { return(new Result(null, "Sorry fam, the wiki fetch failed.")); } return(new Result(embed, string.Empty)); }