mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
16 lines
328 B
C#
16 lines
328 B
C#
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();
|
|
}
|
|
}
|
|
}
|