Adding nix shell and reworking some parser/local file manager stuff

This commit is contained in:
2026-01-23 23:09:56 -06:00
parent ad2e074991
commit 45cd325818
6 changed files with 48 additions and 16 deletions

View File

@@ -1,8 +1,12 @@
using SzLib.DataObjects;
namespace SzLib;
public interface ISzFileManager
{
{
public string DataPath {get;}
public string DatasetsPath {get;}
public bool SaveFile(string path, string fileContent);
}
public string? LoadFile(string path);
}