SimpleFunctions/Functions/Services/Interfaces/IExternalEndpointManager.cs
Elias Stepanik cd23fbe4a9 f
2023-05-29 18:42:26 +02:00

11 lines
339 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Functions.Services.Interfaces;
public interface IExternalEndpointManager
{
public Task<string> Get(string hostname);
public Task<string> Post(string hostname, string body);
public Task<string> Delete(string hostname);
public Task<string> Patch(string hostname, string body);
}