23 lines
491 B
C#
23 lines
491 B
C#
|
|
using Persistence.Models;
|
|
|
|
namespace Persistence.API;
|
|
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
|
|
var host = CreateHostBuilder(args).Build();
|
|
Startup.BeforeRunHandler(host);
|
|
host.Run();
|
|
}
|
|
|
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
|
Host.CreateDefaultBuilder(args)
|
|
.ConfigureWebHostDefaults(webBuilder =>
|
|
{
|
|
webBuilder.UseStartup<Startup>();
|
|
});
|
|
}
|