mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-23 01:25:39 -05:00
Initial commit from private
This commit is contained in:
18
Hub/Service/Program.cs
Normal file
18
Hub/Service/Program.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Microsoft.AspNetCore;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
|
||||
namespace Hub.Service
|
||||
{
|
||||
public static class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
CreateWebHostBuilder(args).Build().Run();
|
||||
}
|
||||
|
||||
private static IWebHostBuilder CreateWebHostBuilder(string[] args)
|
||||
{
|
||||
return WebHost.CreateDefaultBuilder(args).UseStartup<Startup>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user