11 lines
190 B
C#
11 lines
190 B
C#
using System.Reflection;
|
|
|
|
namespace SQLLinter.Core.Interfaces;
|
|
|
|
public interface IAssemblyWrapper
|
|
{
|
|
Assembly LoadFrom(string path);
|
|
|
|
Type[] GetExportedTypes(Assembly assembly);
|
|
}
|