mirror of https://github.com/microsoft/autogen.git
16 lines
313 B
C#
16 lines
313 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Program.cs
|
|
using Microsoft.AutoGen.Runtime.Grpc;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.AddServiceDefaults();
|
|
builder.AddAgentService();
|
|
|
|
var app = builder.Build();
|
|
|
|
app.MapDefaultEndpoints();
|
|
app.MapAgentService();
|
|
|
|
app.Run();
|