You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.ServarrApi/Services/SystemApiService.cs

23 lines
564 B

using Flurl.Http;
using Recyclarr.Config.Models;
using Recyclarr.ServarrApi.Dto;
using Recyclarr.ServarrApi.Http;
namespace Recyclarr.ServarrApi.Services;
public class SystemApiService : ISystemApiService
{
private readonly IServiceRequestBuilder _service;
public SystemApiService(IServiceRequestBuilder service)
{
_service = service;
}
public async Task<SystemStatus> GetStatus(IServiceConfiguration config)
{
return await _service.Request(config, "system", "status")
.GetJsonAsync<SystemStatus>();
}
}