Files
ersatztv/ErsatzTV.Core/Interfaces/Database/IDatabaseMigrations.cs
T
Jason DoveandGitHub 9016523757 cleanup some exceptions; add health check (#2495)
* 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
2025-10-07 09:50:55 -05:00

7 lines
143 B
C#

namespace ErsatzTV.Core.Interfaces.Database;
public interface IDatabaseMigrations
{
Task<IReadOnlyList<string>> GetUnknownMigrations();
}