This commit is contained in:
2023-12-08 14:50:02 +00:00
parent cef1b845bc
commit 865747fbae
13 changed files with 676 additions and 6 deletions

View File

@ -0,0 +1,8 @@
namespace NostrStreamer.Services.Clips;
public interface IClipService
{
Task<ClipResult?> CreateClip(Guid streamId, string takenBy);
}
public record ClipResult(Uri Url);