mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-29 21:26:36 +08:00
框架搭建
This commit is contained in:
18
src/Yi.Framework/Yi.Framework.Web/YiFrameworkWebModule.cs
Normal file
18
src/Yi.Framework/Yi.Framework.Web/YiFrameworkWebModule.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using StartupModules;
|
||||
using Yi.Framework.Core.Module;
|
||||
|
||||
namespace Yi.Framework.Web
|
||||
{
|
||||
public class YiFrameworkWebModule : IYiModule
|
||||
{
|
||||
public void ConfigureServices(IServiceCollection services, ConfigureServicesContext context)
|
||||
{
|
||||
|
||||
}
|
||||
public void Configure(IApplicationBuilder app, ConfigureMiddlewareContext context)
|
||||
{
|
||||
Console.WriteLine("还有谁");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user