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/System/SystemApiService.cs

22 lines
530 B

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