diff --git a/samples/KeyedServices/Program.cs b/samples/KeyedServices/Program.cs index 14378f9..87e71cb 100644 --- a/samples/KeyedServices/Program.cs +++ b/samples/KeyedServices/Program.cs @@ -10,8 +10,8 @@ builder.Services.AddControllers(); var app = builder.Build(); app.MapGet("/big", ([FromKeyedServices("big")] ICache bigCache) => bigCache.Get("date")); - -app.MapGet("/small", ([FromKeyedServices("small")] ICache smallCache) => smallCache.Get("date")); +app.MapGet("/small", ([FromKeyedServices("small")] ICache smallCache) => + smallCache.Get("date")); app.MapControllers(); @@ -48,4 +48,4 @@ public class MyHub : Hub { Console.WriteLine(cache.Get("signalr")); } -} \ No newline at end of file +}