mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
17 lines
334 B
C#
17 lines
334 B
C#
|
using Microsoft.AspNetCore.Builder;
|
|||
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|||
|
namespace Server
|
|||
|
{
|
|||
|
public class Startup
|
|||
|
{
|
|||
|
public void ConfigureServices(IServiceCollection services)
|
|||
|
{ }
|
|||
|
|
|||
|
public void Configure(IApplicationBuilder app)
|
|||
|
{
|
|||
|
app.UseFileServer();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|