chore: stub out shorts creator class

This commit is contained in:
Stevan Freeborn
2025-08-03 22:50:30 -05:00
parent 1b2e687034
commit 8feadcf23c
2 changed files with 10 additions and 0 deletions
@@ -0,0 +1,5 @@
namespace StreamShorts.Library.Media.Video;
public interface IShortsCreator
{
}
@@ -0,0 +1,5 @@
namespace StreamShorts.Library.Media.Video;
public class ShortsCreator : IShortsCreator
{
}