This commit is contained in:
2025-08-21 14:56:35 +05:00
commit ecde1f0eeb
10 changed files with 923 additions and 0 deletions

8
Services/ILokiService.cs Normal file
View File

@ -0,0 +1,8 @@
using GetFromLoki.Models;
namespace GetFromLoki.Services;
public interface ILokiService
{
Task<List<LogEntry>> GetLogsAsync(LogQueryRequest request);
}