mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-22 05:01:28 +00:00
18 lines
No EOL
508 B
C#
18 lines
No EOL
508 B
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace LBPUnion.ProjectLighthouse
|
|
{
|
|
public class TestStartup : Startup
|
|
{
|
|
public TestStartup(IConfiguration configuration) : base(configuration)
|
|
{}
|
|
|
|
public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
app.UseMiddleware<FakeRemoteIPAddressMiddleware>();
|
|
base.Configure(app, env);
|
|
}
|
|
}
|
|
} |