You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
549 B
23 lines
549 B
namespace Lion.AbpPro
|
|
{
|
|
public class Startup
|
|
{
|
|
private readonly IConfiguration _configuration;
|
|
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
_configuration = configuration;
|
|
}
|
|
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddApplication<AbpProHttpApiHostModule>();
|
|
}
|
|
|
|
public void Configure(IApplicationBuilder app,IHostApplicationLifetime lifetime)
|
|
{
|
|
app.InitializeApplication();
|
|
}
|
|
}
|
|
}
|
|
|