// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.Teams.Core.Hosting; using Proactive; HostApplicationBuilder builder = Host.CreateApplicationBuilder(args); builder.Services.AddConversationClient(); builder.Services.AddHostedService(); IHost host = builder.Build(); host.Run();