Beispiel #1
0
        public async Task SearchAlMangaAsync([Summary("Title to search")][Remainder] string name = "Azur Lane")
        {
            Logger.LogInfo($"Searching for {name} on anilist");

            MangaResult mangaResult = await AnilistClient.GetMangaAsync(name);

            await ReplyAsync(embed : GetMangaResultEmbed(mangaResult, 0, new EmbedFooterBuilder()));
        }