2023-06-02 21:54:46 +02:00

8 lines
239 B
C#

namespace Functions.Services.Interfaces;
public interface ILoadManager
{
public Task<HttpResponseMessage> HandleRequest(string functionName, HttpMethod method, string body = "");
public void Update();
public void Start();
}