Files

14 lines
205 B
C#
Raw Permalink Normal View History

2025-07-04 11:09:51 +08:00
namespace MyCode.Project.Services
2025-07-04 09:50:02 +08:00
{
public interface IApiLogService
{
/// <summary>
/// 解析API访问记录
/// </summary>
void ReadApiLog();
}
}