1 // Copyright (c) .NET Foundation. All rights reserved.
2 // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3 
4 using Microsoft.AspNetCore.Identity;
5 using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
6 using Microsoft.Extensions.Configuration;
7 
8 namespace Identity.DefaultUI.WebSite
9 {
10     public class Startup : StartupBase<IdentityUser, IdentityDbContext>
11     {
Startup(IConfiguration configuration)12         public Startup(IConfiguration configuration) : base(configuration)
13         {
14         }
15     }
16 }
17