mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
15 lines
No EOL
455 B
C#
15 lines
No EOL
455 B
C#
using LBPUnion.ProjectLighthouse.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);
|
|
}
|
|
} |