Files
Yi.Admin/src/Yi.Framework/Yi.Framework.Ddd.Application/YiFrameworkModule.cs

25 lines
652 B
C#
Raw Normal View History

2023-01-11 11:10:59 +08:00
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using StartupModules;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Ddd
{
public class YiFrameworkModule : IStartupModule
{
public void Configure(IApplicationBuilder app, ConfigureMiddlewareContext context)
{
throw new NotImplementedException();
}
public void ConfigureServices(IServiceCollection services, ConfigureServicesContext context)
{
throw new NotImplementedException();
}
}
}