Files
linker/linker.libs/web/IWebServer.cs
snltty 5d2754d6cb sync
2024-06-24 21:59:50 +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);
}
}