50 lines
1.1 KiB
C#
50 lines
1.1 KiB
C#
using Furion;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Yi.Furion.Web.Core.Handlers;
|
|
|
|
namespace Yi.Furion.Web.Core;
|
|
|
|
public class Startup : AppStartup
|
|
{
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddConsoleFormatter();
|
|
services.AddJwt<JwtHandler>();
|
|
|
|
services.AddCorsAccessor();
|
|
|
|
services.AddControllers().AddInjectWithUnifyResult();
|
|
|
|
services.AddEventBus();
|
|
|
|
services.AddHttpContextAccessor();
|
|
}
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseCorsAccessor();
|
|
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
|
|
app.UseInject(string.Empty);
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
});
|
|
}
|
|
}
|