Fix Game API not working

This commit is contained in:
jvyden 2022-05-14 17:38:37 -04:00
commit 51b3c72a2f
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
3 changed files with 3 additions and 10 deletions

View file

@ -0,0 +1,15 @@
using LBPUnion.ProjectLighthouse.Helpers.Middlewares;
namespace LBPUnion.ProjectLighthouse.Startup;
public class TestGameApiStartup : GameApiStartup
{
public TestGameApiStartup(IConfiguration configuration) : base(configuration)
{}
public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseMiddleware<FakeRemoteIPAddressMiddleware>();
base.Configure(app, env);
}
}