8 lines
205 B
C#
8 lines
205 B
C#
namespace Pilz.Networking.Api;
|
|
|
|
public interface IApiServer : IApiClient
|
|
{
|
|
void RegisterHandler<T>(string url, T instance) where T : class;
|
|
void RegisterHandler(string url, Delegate handler);
|
|
}
|