Files
server/src/Billing/Program.cs

18 lines
350 B
C#
Raw Normal View History

2017-10-06 12:18:16 -04:00
using Microsoft.AspNetCore;
2017-03-18 18:52:44 -04:00
using Microsoft.AspNetCore.Hosting;
namespace Bit.Billing
{
public class Program
{
public static void Main(string[] args)
{
2017-10-06 12:18:16 -04:00
WebHost
.CreateDefaultBuilder(args)
2017-03-18 18:52:44 -04:00
.UseStartup<Startup>()
2017-10-06 12:18:16 -04:00
.Build()
.Run();
2017-03-18 18:52:44 -04:00
}
}
}