14 lines
205 B
C#
14 lines
205 B
C#
namespace MyCode.Project.Services
|
|
{
|
|
public interface IApiLogService
|
|
{
|
|
/// <summary>
|
|
/// 解析API访问记录
|
|
/// </summary>
|
|
void ReadApiLog();
|
|
|
|
|
|
|
|
}
|
|
}
|