mirror of
https://github.com/bitwarden/server.git
synced 2025-07-18 16:11:28 -05:00
setup new admin portal project
This commit is contained in:
17
src/Admin/Program.cs
Normal file
17
src/Admin/Program.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using Microsoft.AspNetCore;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
|
||||
namespace Bit.Admin
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
WebHost
|
||||
.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>()
|
||||
.Build()
|
||||
.Run();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user