mirror of
https://github.com/bitwarden/browser
synced 2025-01-06 15:38:42 +01:00
17 lines
341 B
C#
17 lines
341 B
C#
using System;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Bit.Web
|
|
{
|
|
public class Startup
|
|
{
|
|
public void ConfigureServices(IServiceCollection services) { }
|
|
|
|
public void Configure(IApplicationBuilder app)
|
|
{
|
|
app.UseFileServer();
|
|
}
|
|
}
|
|
}
|