11 lines
180 B
C#
11 lines
180 B
C#
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
|
|
|
|
namespace AwperativeKernel;
|
|
|
|
|
|
public interface IModuleManager
|
|
{
|
|
public IReadOnlyList<Assembly> GetDependencies();
|
|
} |