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