mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-28 12:46:36 +08:00
19 lines
437 B
C#
19 lines
437 B
C#
|
|
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("还有谁");
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|