mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
refactor(directory): ♻ ren predicate
This commit is contained in:
parent
2a98fe3fdc
commit
e764513749
1 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
namespace FilterLists.Directory.Api
|
||||
{
|
||||
#pragma warning disable CA1812
|
||||
#pragma warning disable CA1812
|
||||
internal class Startup
|
||||
#pragma warning restore CA1812
|
||||
{
|
||||
|
|
@ -29,7 +29,7 @@ public static void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|||
if (env.IsDevelopment())
|
||||
app.UseDeveloperExceptionPage();
|
||||
app.UseRouting();
|
||||
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
|
||||
app.UseEndpoints(e => { e.MapControllers(); });
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue