10 lines
213 B
C#
10 lines
213 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Squirrowse.Service.Hubs
|
|
{
|
|
public interface IStreamHub
|
|
{
|
|
Task UploadByteStream(IAsyncEnumerable<byte[]> stream);
|
|
}
|
|
} |