1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-06 15:38:42 +01:00
bitwarden-estensione-browser/src/Web/Startup.cs
2016-08-08 19:09:19 -04:00

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();
}
}
}