mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
351 B
C#
12 lines
351 B
C#
|
|
using Marechai.Areas.Identity;
|
|||
|
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
|
|
|||
|
|
[assembly: HostingStartup(typeof(IdentityHostingStartup))]
|
|||
|
|
|
|||
|
|
namespace Marechai.Areas.Identity
|
|||
|
|
{
|
|||
|
|
public class IdentityHostingStartup : IHostingStartup
|
|||
|
|
{
|
|||
|
|
public void Configure(IWebHostBuilder builder) => builder.ConfigureServices((context, services) => { });
|
|||
|
|
}
|
|||
|
|
}
|