mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-10 17:33:13 +00:00
18 lines
361 B
C#
18 lines
361 B
C#
namespace Core
|
|
{
|
|
public sealed class CoreInterface
|
|
{
|
|
private readonly EntryPoint entryPoint;
|
|
|
|
internal CoreInterface(EntryPoint entryPoint)
|
|
{
|
|
this.entryPoint = entryPoint;
|
|
}
|
|
|
|
public T GetPlugin<T>() where T : IProjectPlugin
|
|
{
|
|
return entryPoint.GetPlugin<T>();
|
|
}
|
|
}
|
|
}
|