mirror of
https://github.com/eliasstepanik/SimpleFunctions.git
synced 2026-01-10 21:28:29 +00:00
8 lines
239 B
C#
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();
|
|
} |