1
0
mirror of https://github.com/bitwarden/server.git synced 2025-01-07 19:37:51 +01:00
bitwarden-server/src/Icons/Program.cs

19 lines
362 B
C#
Raw Normal View History

using System;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
2017-10-09 19:35:07 +02:00
namespace Bit.Icons
{
public class Program
{
public static void Main(string[] args)
{
2017-10-09 20:05:35 +02:00
WebHost
.CreateDefaultBuilder(args)
.UseStartup<Startup>()
2017-10-09 20:05:35 +02:00
.Build()
.Run();
}
}
}