1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 10:32:49 -05:00

move mail and sql updates to util folder

This commit is contained in:
Kyle Spearrin
2017-05-31 08:32:45 -04:00
parent 8a47869899
commit a3a42f4fd5
14 changed files with 3 additions and 3 deletions

20
util/Mail/Program.cs Normal file
View File

@ -0,0 +1,20 @@
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();
}
}
}