FileDatabase Improvements

- small bugfixes
 - Startup configuration to load an arbitrary file database for the API
This commit is contained in:
daniel-c-harvey
2025-09-04 14:19:57 -04:00
parent 27522c1e1c
commit c4c4662c67
5 changed files with 52 additions and 6 deletions
@@ -0,0 +1,7 @@
namespace DeepDrftContent.Models
{
public class FileDatabaseSettings
{
public required string VaultPath { get; set; }
}
}