Files
Yi.Admin/src/Yi.Framework/Yi.Framework.Web/YiFrameworkWebModule.cs

18 lines
410 B
C#
Raw Normal View History

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