19 lines
580 B
C#
19 lines
580 B
C#
|
|
using Microsoft.AspNetCore.Authentication.OAuth;
|
||
|
|
using Microsoft.AspNetCore.Authentication;
|
||
|
|
using Microsoft.AspNetCore.Identity;
|
||
|
|
using Microsoft.AspNetCore.Mvc;
|
||
|
|
|
||
|
|
public class Program
|
||
|
|
{
|
||
|
|
public static void Main(string[] args)
|
||
|
|
{
|
||
|
|
CreateHostBuilder(args).Build().Run();
|
||
|
|
}
|
||
|
|
|
||
|
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||
|
|
Host.CreateDefaultBuilder(args)
|
||
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
||
|
|
{
|
||
|
|
webBuilder.UseStartup<Startup>();
|
||
|
|
});
|
||
|
|
}
|