Make vault storages work
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public interface IComponentFactory
|
||||
{
|
||||
IComponentHost? Create<TComponent>(string name,
|
||||
ComponentConfiguration configuration, Action<IServiceCollection>? servicesDelegate = null)
|
||||
where TComponent : IComponent;
|
||||
}
|
||||
Reference in New Issue
Block a user