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
+2 -1
View File
@@ -4,7 +4,8 @@ namespace ParadoxSaveParser.WebAPI;
public static class PathHelper
{
public static readonly IOPath DATA_DIR = "data";
public static readonly IOPath PUBLIC_DIR = "public";
public static readonly IOPath DATA_DIR = Path.Concat(PUBLIC_DIR, "data");
public static readonly IOPath SAVES_DIR = Path.Concat(DATA_DIR, "saves");
public static readonly IOPath PARSED_DIR = Path.Concat(DATA_DIR, "parsed");
public static readonly IOPath TEMP_DIR = "temp";