namespace WebApp.Services;
///
/// Creates SQLite database backups.
///
public interface IDatabaseBackupService
{
///
/// Creates a pre-rollover backup of the application database using SQLite VACUUM INTO.
///
/// The absolute path of the backup file.
Task CreatePreRolloverBackupAsync(CancellationToken cancellationToken = default);
}