2023-01-14 18:16:16 +08:00
|
|
|
|
using StartupModules;
|
2023-01-11 11:10:59 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Web
|
|
|
|
|
|
{
|
2023-01-14 18:16:16 +08:00
|
|
|
|
public class YiFrameworkWebModule : IStartupModule
|
2023-01-11 11:10:59 +08:00
|
|
|
|
{
|
2023-01-14 18:16:16 +08:00
|
|
|
|
public void ConfigureServices(IServiceCollection services, ConfigureServicesContext context)
|
2023-01-11 11:10:59 +08:00
|
|
|
|
{
|
2023-01-14 18:16:16 +08:00
|
|
|
|
|
2023-01-11 11:10:59 +08:00
|
|
|
|
}
|
2023-01-14 18:16:16 +08:00
|
|
|
|
public void Configure(IApplicationBuilder app, ConfigureMiddlewareContext context)
|
2023-01-11 11:10:59 +08:00
|
|
|
|
{
|
2023-01-14 18:16:16 +08:00
|
|
|
|
Console.WriteLine("还有谁");
|
|
|
|
|
|
|
2023-01-11 11:10:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|