1
0
mirror of https://github.com/bitwarden/server.git synced 2025-03-02 04:11:04 +01:00
bitwarden-server/src/Admin/Program.cs

18 lines
348 B
C#
Raw Normal View History

2018-03-21 17:57:43 +01:00
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Bit.Admin
{
public class Program
{
public static void Main(string[] args)
{
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
.Build()
.Run();
}
}
}