Files
SPT-Server-Build/Core/Servers/IHttpServer.cs
T
2025-01-05 02:12:38 +00:00

7 lines
143 B
C#

namespace Types.Servers;
public interface IHttpServer
{
public void Load(WebApplicationBuilder builder);
public bool IsStarted();
}