using NostrStreamer.Database;
namespace NostrStreamer.Services.Dvr;
public interface IDvrStore
{
///
/// Upload a DVR recording to storage and return the URL
///
///
///
///
Task UploadRecording(UserStream stream, Uri source);
}
public record UploadResult(Uri Result, double Duration);