mirror of
https://github.com/snltty/linker.git
synced 2025-10-08 02:20:15 +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);
|
|
}
|
|
|
|
}
|