mirror of
https://github.com/snltty/linker.git
synced 2025-10-09 11:01:54 +08:00
15 lines
247 B
C#
15 lines
247 B
C#
namespace linker.libs.web
|
|
{
|
|
/// <summary>
|
|
/// web服务
|
|
/// </summary>
|
|
public interface IWebServer
|
|
{
|
|
/// <summary>
|
|
/// 开始
|
|
/// </summary>
|
|
public void Start(int port, string root);
|
|
}
|
|
|
|
}
|