Working Get -reading from api

This commit is contained in:
2024-05-09 14:50:25 +02:00
parent b584174707
commit 541ec847c3
7 changed files with 211 additions and 13 deletions

View File

@ -0,0 +1,9 @@

namespace PostmanCloneLibrary
{
public interface IApiAccess
{
Task<string> CallApiAsync(string url, bool formaOutput, HttpAction action);
bool IsValidUrl(string url);
}
}