mirror of
				https://github.com/microsoft/autogen.git
				synced 2025-10-31 01:40:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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();
 | 
