[store] kitties now have own http client factory

This commit is contained in:
Andriy
2023-07-28 22:44:51 +03:00
parent 462f3c9836
commit c19696b360
8 changed files with 79 additions and 30 deletions
+8
View File
@@ -0,0 +1,8 @@
using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.API;
public interface IKittiesApi
{
public Task<KittiesResponse> GetKittiesImageAsync(string type);
}