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

18 lines
410 B
C#
Raw Normal View History

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