Ejemplo n.º 1
0
        public async Task <BooruSharp.Search.Post.SearchResult> GelBooru(IUser usr, IGuild guild, ICommandContext context, string tag = "thighhighs")
        {
            BooruSharp.Booru.Gelbooru           Booru  = new BooruSharp.Booru.Gelbooru();
            BooruSharp.Search.Post.SearchResult result = new BooruSharp.Search.Post.SearchResult();
            try
            {
                result = await Booru.GetRandomPostAsync(tag.Split(','));

                return(result);
            }
            catch (Exception e)
            {
                Console.WriteLine(e);

                await SearchTag(context, tag);
            }

            return(result);
        }
Ejemplo n.º 2
0
        public SearchResult getRandomGelbooru(string[] tags)
        {
            var booru = new BooruSharp.Booru.Gelbooru();

            return(booru.GetRandomPostAsync(tags).Result);
        }