Files
linker/linker.libs/web/IWebServer.cs
snltty 33a9cfedc5 sync
2024-06-24 23:06:29 +08:00

15 lines
247 B
C#

namespace linker.libs.web
{
/// <summary>
/// web服务
/// </summary>
public interface IWebServer
{
/// <summary>
/// 开始
/// </summary>
public void Start(int port, string root);
}
}