Files
AwperativeKernel/AwperativeKernel/Kernel/RequiredModules/IModuleManager.cs
2026-02-28 21:11:47 -05:00

11 lines
180 B
C#

using System.Collections.Generic;
using System.Reflection;
namespace AwperativeKernel;
public interface IModuleManager
{
public IReadOnlyList<Assembly> GetDependencies();
}