mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-07 09:01:29 +00:00

rename the main classes and mixup folder structure move some tings from samples into core cleanup cross-deps cleanup grpc deps
12 lines
238 B
C#
12 lines
238 B
C#
using Microsoft.AutoGen.Agents.Runtime;
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.AddServiceDefaults();
|
|
builder.AddAgentService();
|
|
|
|
var app = builder.Build();
|
|
|
|
app.MapDefaultEndpoints();
|
|
app.MapAgentService();
|
|
|
|
app.Run(); |