mirror of
https://github.com/snltty/linker.git
synced 2025-10-18 15:10:43 +08:00
17 lines
278 B
C#
17 lines
278 B
C#
using linker.libs.api;
|
|
using System.Reflection;
|
|
|
|
namespace linker.plugins.capi
|
|
{
|
|
public interface IApiClientController : IApiController
|
|
{
|
|
|
|
}
|
|
|
|
public interface IApiClientServer : IApiServer
|
|
{
|
|
public void LoadPlugins(Assembly[] assemblys);
|
|
}
|
|
|
|
}
|