mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-29 19:18:30 -07:00
12 lines
No EOL
268 B
C#
12 lines
No EOL
268 B
C#
using System;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ombi.Api
|
|
{
|
|
public interface IOmbiHttpClient
|
|
{
|
|
Task<HttpResponseMessage> SendAsync(HttpRequestMessage request);
|
|
Task<string> GetStringAsync(Uri requestUri);
|
|
}
|
|
} |