2025-05-27 14:02:24 +08:00
|
|
|
namespace JiShe.ServicePro.WebGateway
|
2025-03-11 10:24:11 +08:00
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
|
|
|
|
public static async Task Main(string[] args)
|
|
|
|
|
{
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
builder.Host
|
|
|
|
|
.UseAutofac();
|
|
|
|
|
await builder.AddApplicationAsync<AbpProWebGatewayModule>();
|
|
|
|
|
var app = builder.Build();
|
|
|
|
|
await app.InitializeApplicationAsync();
|
|
|
|
|
await app.RunAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|