7 lines
143 B
C#
7 lines
143 B
C#
namespace Types.Servers;
|
|
|
|
public interface IHttpServer
|
|
{
|
|
public void Load(WebApplicationBuilder builder);
|
|
public bool IsStarted();
|
|
} |