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

11 lines
325 B
C#
Raw Normal View History

2020-07-16 07:19:41 +02:00
using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts.Federation
2020-07-16 07:19:41 +02:00
{
public interface ISendTweetsToFollowersProcessor
{
Task<UserWithDataToSync> ProcessAsync(UserWithDataToSync userWithTweetsToSync, CancellationToken ct);
2020-07-16 07:19:41 +02:00
}
}