Amend reading config

This commit is contained in:
TheXamlGuy
2024-04-21 19:53:47 +01:00
parent 51a96dba8f
commit a2a576f033
45 changed files with 561 additions and 68 deletions
+14
View File
@@ -0,0 +1,14 @@
using Toolkit.Foundation;
namespace Bitvault.Avalonia;
public class VaultComponent :
IVaultComponent
{
public IComponentBuilder Create() =>
ComponentBuilder.Create()
.AddServices(services =>
{
});
}