minor fixes for api

This commit is contained in:
2024-08-17 10:12:44 +02:00
parent f509c53836
commit aed2cc4d88
2 changed files with 15 additions and 6 deletions

View File

@@ -23,4 +23,6 @@ public interface IApiServer
void RegisterHandler<T>(T instance) where T : class;
void RegisterHandler(Delegate handler);
void RegisterHandler(Delegate handler, bool throwOnError);
}