From f7eb445c9fcf4557f0bf1e1622673242b7da5ced Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 7 Sep 2024 14:51:44 -0400 Subject: update manual plugin loading api --- apps/VNLib.WebServer/src/Bootstrap/WebserverBase.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/VNLib.WebServer/src') diff --git a/apps/VNLib.WebServer/src/Bootstrap/WebserverBase.cs b/apps/VNLib.WebServer/src/Bootstrap/WebserverBase.cs index f3832c6..67fc306 100644 --- a/apps/VNLib.WebServer/src/Bootstrap/WebserverBase.cs +++ b/apps/VNLib.WebServer/src/Bootstrap/WebserverBase.cs @@ -93,6 +93,10 @@ namespace VNLib.WebServer.Bootstrap HttpServiceStackBuilder builder = new HttpServiceStackBuilder() .LoadPluginsConcurrently(loadPluginsConcurrently) .WithBuiltInHttp(TcpConfig.ReduceBindingsForGroups, http) + .WithManualPlugins(plugins => + { + + }) .WithDomain(domain => { domain.WithServiceGroups(vh => -- cgit