web: add basic ASP.NET Core web interface

This commit is contained in:
Ske
2019-05-08 20:53:36 +02:00
parent 495edc3c5e
commit 95a7e5e821
13 changed files with 374 additions and 0 deletions

19
PluralKit.Web/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace PluralKit.Web
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args)
{
return WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
}
}
}