begin developing a basic message based web api

This commit is contained in:
Pilzinsel64
2024-08-14 14:59:05 +02:00
parent 1932443a20
commit 02a6c3bf6a
9 changed files with 115 additions and 0 deletions

View 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);
}