14 lines
344 B
C#
14 lines
344 B
C#
namespace NostrStreamer.Services.Dvr;
|
|
|
|
public interface IDvrStore
|
|
{
|
|
/// <summary>
|
|
/// Upload a DVR recording to storage and return the URL
|
|
/// </summary>
|
|
/// <param name="source"></param>
|
|
/// <returns></returns>
|
|
Task<UploadResult> UploadRecording(Uri source);
|
|
}
|
|
|
|
public record UploadResult(Uri Result, double Duration);
|