fixes for capabilities

This commit is contained in:
Pilzinsel64
2025-06-13 10:26:33 +02:00
parent b9e633a0ff
commit d7e592180b
4 changed files with 7 additions and 14 deletions

View File

@@ -27,7 +27,7 @@ public interface IApiServer
void RegisterHandler(Delegate handler);
void RegisterHandler(Delegate handler, bool throwOnError);
void RegisterHandler(Delegate handler, ApiMessageHandlerAttribute attribute, bool throwOnError);
IEnumerable<string> GetEndpoints();
Dictionary<string, string[]> GetEndpoints();
void Stop(bool graceful);
void Restart(bool graceful);
}