mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
some cleanup
This commit is contained in:
parent
c52add4051
commit
fc3425dfb7
@ -1,12 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace Bit.Icons
|
||||
{
|
||||
@ -14,12 +8,11 @@ namespace Bit.Icons
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
BuildWebHost(args).Run();
|
||||
}
|
||||
|
||||
public static IWebHost BuildWebHost(string[] args) =>
|
||||
WebHost.CreateDefaultBuilder(args)
|
||||
WebHost
|
||||
.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>()
|
||||
.Build();
|
||||
.Build()
|
||||
.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user