using System;
namespace LFlow.Base.Interfaces;
/// <summary>
/// 模块接口
/// </summary>
public interface IModule
{
/// 配置模块
/// <param name="services"></param>
void ConfigureModule(IServiceCollection services);
}