mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-29 08:28:39 +00:00
Move servers to LBPU.PL.Servers
This commit is contained in:
parent
545b5a0709
commit
b2ec7eae57
116 changed files with 173 additions and 162 deletions
|
@ -0,0 +1,15 @@
|
|||
using LBPUnion.ProjectLighthouse.Helpers.Middlewares;
|
||||
|
||||
namespace LBPUnion.ProjectLighthouse.Servers.GameServer.Startup;
|
||||
|
||||
public class GameServerTestStartup : GameServerStartup
|
||||
{
|
||||
public GameServerTestStartup(IConfiguration configuration) : base(configuration)
|
||||
{}
|
||||
|
||||
public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||||
{
|
||||
app.UseMiddleware<FakeRemoteIPAddressMiddleware>();
|
||||
base.Configure(app, env);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue