PhaseG0: 网关核心 — 7接口+10模型+3基础设施 编译通过

This commit is contained in:
2026-05-17 04:21:02 +08:00
parent 23ea4fe05f
commit 10f4a6bfe9
35 changed files with 186 additions and 455 deletions

View File

@@ -1,14 +1,6 @@
using IntegrationGateway.Core.Infrastructure;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
builder.Services.AddMemoryCache();
builder.Services.AddSingleton<AdapterRegistry>();
builder.Services.AddSingleton<TokenManager>();
var app = builder.Build();
app.MapControllers();
app.MapGet("/", () => "Hello World!");
app.Run();