diff --git a/dotnet-observability/eShopLite/Products/Program.cs b/dotnet-observability/eShopLite/Products/Program.cs index 24ae6ba..8230ea8 100644 --- a/dotnet-observability/eShopLite/Products/Program.cs +++ b/dotnet-observability/eShopLite/Products/Program.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +vusing Microsoft.EntityFrameworkCore; using Products.Data; using Products.Endpoints; @@ -6,6 +6,8 @@ builder.Services.AddDbContext(options => options.UseSqlite(builder.Configuration.GetConnectionString("ProductsContext") ?? throw new InvalidOperationException("Connection string 'ProductsContext' not found."))); +// Add observability code here + // Add services to the container. var app = builder.Build();