1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-22 17:22:56 +01:00
bitwarden-estensione-browser/src/Web/Startup.cs

17 lines
341 B
C#
Raw Normal View History

2015-12-09 04:35:05 +01:00
using System;
2016-05-20 05:16:27 +02:00
using Microsoft.AspNetCore.Builder;
2015-12-09 04:35:05 +01:00
using Microsoft.Extensions.DependencyInjection;
2016-08-09 01:09:19 +02:00
namespace Bit.Web
2015-12-09 04:35:05 +01:00
{
public class Startup
{
public void ConfigureServices(IServiceCollection services) { }
public void Configure(IApplicationBuilder app)
{
app.UseFileServer();
}
}
}