2024-10-16 11:17:16 +08:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace LFlow.Base.Interfaces;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模块接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IModule
|
|
|
|
|
{
|
2024-11-04 10:10:05 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 配置模块
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="services"></param>
|
2024-10-16 11:17:16 +08:00
|
|
|
void ConfigureModule(IServiceCollection services);
|
|
|
|
|
}
|