1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00
bitwarden-server/util/Mail/Program.cs

18 lines
347 B
C#
Raw Normal View History

2017-10-23 15:11:25 +02:00
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
namespace Bit.Mail
{
public class Program
{
public static void Main(string[] args)
{
2017-10-23 15:11:25 +02:00
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
2017-10-23 15:11:25 +02:00
.Build()
.Run();
}
}
}