BirdsiteLive/src/BirdsiteLive.Pipeline/Contracts/Federation/ISendTweetsToFollowersProce...

11 lines
325 B
C#

using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts.Federation
{
public interface ISendTweetsToFollowersProcessor
{
Task<UserWithDataToSync> ProcessAsync(UserWithDataToSync userWithTweetsToSync, CancellationToken ct);
}
}