begin developing a basic message based web api
This commit is contained in:
7
Pilz.Networking/Api/IApiServer.cs
Normal file
7
Pilz.Networking/Api/IApiServer.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Pilz.Networking.Api;
|
||||
|
||||
public interface IApiServer : IApiClient
|
||||
{
|
||||
void RegisterHandler<T>(string url, T instance) where T : class;
|
||||
void RegisterHandler(string url, Delegate handler);
|
||||
}
|
||||
Reference in New Issue
Block a user