From 1ac92f6da2ab407ba251d14377953b541c07f439 Mon Sep 17 00:00:00 2001 From: defnotken Date: Sat, 18 Oct 2025 19:44:02 -0500 Subject: [PATCH] move shard controller. --- LightlessSyncServer/LightlessSyncStaticFilesServer/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LightlessSyncServer/LightlessSyncStaticFilesServer/Startup.cs b/LightlessSyncServer/LightlessSyncStaticFilesServer/Startup.cs index 8283519..baa21d5 100644 --- a/LightlessSyncServer/LightlessSyncStaticFilesServer/Startup.cs +++ b/LightlessSyncServer/LightlessSyncStaticFilesServer/Startup.cs @@ -211,7 +211,7 @@ public class Startup } else { - a.FeatureProviders.Add(new AllowedControllersFeatureProvider(typeof(CacheController), typeof(RequestController), typeof(SpeedTestController))); + a.FeatureProviders.Add(new AllowedControllersFeatureProvider(typeof(CacheController), typeof(ShardServerFilesController), typeof(RequestController), typeof(SpeedTestController))); } });