mirror of
https://github.com/snltty/linker.git
synced 2025-10-05 17:16:56 +08:00
11 lines
188 B
C#
11 lines
188 B
C#
using linker.libs.api;
|
|
|
|
namespace linker.messenger.api
|
|
{
|
|
public interface IApiServer : libs.api.IApiServer
|
|
{
|
|
public void AddPlugins(List<IApiController> list);
|
|
}
|
|
|
|
}
|