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

7
Services/LokiOptions.cs Normal file
View File

@ -0,0 +1,7 @@
namespace GetFromLoki.Services;
public class LokiOptions
{
public string BaseUrl { get; set; } = "http://localhost:3100";
public int QueryTimeout { get; set; } = 30;
}