Upload thumbnails to S3

This commit is contained in:
2023-08-01 23:08:57 +01:00
parent 99ad1dc439
commit d2b56c14f9
20 changed files with 482 additions and 110 deletions

View File

@ -0,0 +1,8 @@
using NostrStreamer.Database;
namespace NostrStreamer.Services.Thumbnail;
public interface IThumbnailService
{
Task GenerateThumb(UserStream stream);
}