moved data to public dir

This commit is contained in:
2025-05-23 01:24:22 +05:00
parent 9415c60287
commit 36d39b524c
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ public static class Program
// http server
var router = new SimpleRouter(loggerRoot);
router.DefaultRoute = new SimpleRouter.RouteWithMethod(HttpMethod.GET,
new ServeFilesRouteHandler("public"));
new ServeFilesRouteHandler(PathHelper.PUBLIC_DIR));
router.MapRoute("/uploadSave", HttpMethod.POST,
new UploadSaveHandler(mainCancel.Token, bgJobManager, saveFilters));
router.MapRoute("/getSaveStatus", HttpMethod.GET,