1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 03:23:20 +00:00

some cleanup

This commit is contained in:
Kyle Spearrin
2017-10-09 14:05:35 -04:00
parent c52add4051
commit fc3425dfb7
2 changed files with 6 additions and 16 deletions

View File

@@ -17,12 +17,8 @@ namespace Bit.Icons
public void ConfigureServices(IServiceCollection services)
{
// Options
services.AddOptions();
// Settings
services.Configure<IconsSettings>(Configuration.GetSection("IconsSettings"));
services.AddMemoryCache();
services.AddMvc();
}
@@ -33,6 +29,7 @@ namespace Bit.Icons
{
app.UseDeveloperExceptionPage();
}
app.UseMvc();
}
}