Make vault storages work

This commit is contained in:
TheXamlGuy
2024-04-28 16:04:05 +01:00
parent 20840cbf9c
commit df26cd2a75
15 changed files with 143 additions and 112 deletions
+3 -1
View File
@@ -4,6 +4,8 @@ namespace Bitvault
{
public interface IVaultFactory
{
IComponentHost? Create(string name, VaultConfiguration configuration);
IComponentHost? Create(string name,
string password,
VaultConfiguration configuration);
}
}