17 lines
465 B
C#
17 lines
465 B
C#
using JiShe.CollectBus.Common.Models;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace JiShe.CollectBus.Common.Interfaces
|
|
{
|
|
public interface IJiSheModule
|
|
{
|
|
/// <summary>
|
|
/// 模块中的依赖注入
|
|
/// </summary>
|
|
/// <param name="context">模块服务上下文</param>
|
|
void ConfigureServices(ServiceContext context);
|
|
}
|
|
}
|