11 lines
178 B
C#
11 lines
178 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace LFlow.Base.Interfaces;
|
||
|
|
/// <summary>
|
||
|
|
/// 模块接口
|
||
|
|
/// </summary>
|
||
|
|
public interface IModule
|
||
|
|
{
|
||
|
|
void ConfigureModule(IServiceCollection services);
|
||
|
|
}
|