cloutier--bird.makeup/src/BirdsiteLive.Pipeline/Contracts/ISendTweetsToFollowersProcessor.cs

11 lines
294 B
C#
Raw Normal View History

2020-07-16 01:19:41 -04:00
using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts
{
public interface ISendTweetsToFollowersProcessor
{
2023-02-22 11:30:02 -05:00
Task ProcessAsync(UserWithDataToSync userWithTweetsToSync, CancellationToken ct);
2020-07-16 01:19:41 -04:00
}
}