using System; namespace LFlow.Base.Interfaces; /// /// 模块接口 /// public interface IModule { void ConfigureModule(IServiceCollection services); }