mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
21 lines
450 B
C#
21 lines
450 B
C#
|
using System.IO;
|
|||
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
|
|||
|
namespace Bit.Mail
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
var host = new WebHostBuilder()
|
|||
|
.UseKestrel()
|
|||
|
.UseContentRoot(Directory.GetCurrentDirectory())
|
|||
|
.UseIISIntegration()
|
|||
|
.UseStartup<Startup>()
|
|||
|
.Build();
|
|||
|
|
|||
|
host.Run();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|