You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
561 B
C#
24 lines
561 B
C#
using Estsh.Core.Extensions;
|
|
|
|
namespace Estsh.Core.Web.Plugin.Wms
|
|
{
|
|
public class Startup
|
|
{
|
|
public Startup(IConfiguration configuration)
|
|
{
|
|
Configuration = configuration;
|
|
}
|
|
|
|
public IConfiguration Configuration { get; }
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.PluginStartup(Configuration);
|
|
}
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
app.PluginAppBuilder(env);
|
|
}
|
|
}
|
|
}
|