1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -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

15
util/Mail/Startup.cs Normal file
View File

@ -0,0 +1,15 @@
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace Bit.Mail
{
public class Startup
{
public void ConfigureServices(IServiceCollection services) { }
public void Configure(IApplicationBuilder app)
{
app.UseFileServer();
}
}
}