Files
Swarm/DysonNetwork.Gateway/Program.cs
2025-07-15 19:22:31 +08:00

15 lines
295 B
C#

using DysonNetwork.Gateway.Startup;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddGateway(builder.Configuration);
builder.Services.AddControllers();
var app = builder.Build();
app.MapControllers();
app.MapReverseProxy();
app.Run();