17 lines
468 B
C#
17 lines
468 B
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using StartupModules;
|
|
|
|
namespace Yi.Framework.DictionaryManager
|
|
{
|
|
public class YiFrameworkDictionaryManagerModule : IStartupModule
|
|
{
|
|
public void Configure(IApplicationBuilder app, ConfigureMiddlewareContext context)
|
|
{
|
|
}
|
|
|
|
public void ConfigureServices(IServiceCollection services, ConfigureServicesContext context)
|
|
{
|
|
}
|
|
}
|
|
} |