Files
telegram-bot/modules/ContentStore/Service/CatApiService.cs
T

10 lines
274 B
C#
Raw Normal View History

2022-02-16 17:07:30 +02:00
using Newtonsoft.Json;
using Telegram.Bot.Types;
using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.Service;
public class CatApiService : AnimalAsAService
{
public CatApiService() : base(new Uri("https://api.thecatapi.com/v1/")) {}
}