9 lines
158 B
C#
9 lines
158 B
C#
using NostrStreamer.Database;
|
|
|
|
namespace NostrStreamer.Services.Thumbnail;
|
|
|
|
public interface IThumbnailService
|
|
{
|
|
Task GenerateThumb(UserStream stream);
|
|
}
|