* 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
143 B
C#
7 lines
143 B
C#
namespace ErsatzTV.Core.Interfaces.Database;
|
|
|
|
public interface IDatabaseMigrations
|
|
{
|
|
Task<IReadOnlyList<string>> GetUnknownMigrations();
|
|
}
|