1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-11 15:17:44 +01:00
bitwarden-server/src/Api/Program.cs

18 lines
346 B
C#
Raw Normal View History

2017-10-06 18:18:16 +02:00
using Microsoft.AspNetCore;
2016-05-20 01:10:24 +02:00
using Microsoft.AspNetCore.Hosting;
namespace Bit.Api
{
public class Program
{
public static void Main(string[] args)
{
2017-10-06 18:18:16 +02:00
WebHost
.CreateDefaultBuilder(args)
2016-05-20 01:10:24 +02:00
.UseStartup<Startup>()
2017-10-06 18:18:16 +02:00
.Build()
.Run();
2016-05-20 01:10:24 +02:00
}
}
}