* handle artwork timeouts so they aren't reported * catch some more cancellation errors * add free space validation on startup * add downgrade health check * update dependencies
7 lines
111 B
C#
7 lines
111 B
C#
namespace ErsatzTV.Services.Validators;
|
|
|
|
public interface IEnvironmentValidator
|
|
{
|
|
Task<bool> Validate();
|
|
}
|