mirror of
https://github.com/bitwarden/server.git
synced 2025-01-06 19:28:08 +01:00
19 lines
362 B
C#
19 lines
362 B
C#
using System;
|
|
using Microsoft.AspNetCore;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
namespace Bit.Icons
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
WebHost
|
|
.CreateDefaultBuilder(args)
|
|
.UseStartup<Startup>()
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|
|
}
|