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:
15
util/Mail/Startup.cs
Normal file
15
util/Mail/Startup.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user