mirror of
https://github.com/eliasstepanik/SimpleFunctions.git
synced 2026-01-11 21:58:31 +00:00
12 lines
463 B
C#
12 lines
463 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Functions.Services.Interfaces;
|
|
|
|
public interface IExternalEndpointManager
|
|
{
|
|
public Task<HttpResponseMessage> Get(string hostname);
|
|
public Task<HttpResponseMessage> Post(string hostname, string body);
|
|
public Task<HttpResponseMessage> Delete(string hostname);
|
|
public Task<HttpResponseMessage> Patch(string hostname, string body);
|
|
public Task<HttpResponseMessage> Put(string hostname, string body);
|
|
} |