mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
rename "vault" to "web"
This commit is contained in:
16
src/Web/Startup.cs
Normal file
16
src/Web/Startup.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user