diff --git a/modules/ContentStore/Service/CapyApiService.cs b/modules/ContentStore/Service/CapyApiService.cs new file mode 100644 index 0000000..0352250 --- /dev/null +++ b/modules/ContentStore/Service/CapyApiService.cs @@ -0,0 +1,12 @@ +using West.TelegramBot.ContentStore.Model; + +namespace West.TelegramBot.ContentStore.Service; + +public class CapyApiService : IRandomMediaService +{ + public StoreItem StoreItem { get; } = new("capybara", "Капибара", 60, 25); + public async Task GetRandomMediaAsync() + { + return new RandomMedia("https://api.capy.lol/v1/capybara"); + } +} \ No newline at end of file