cloutier--bird.makeup/src/BirdsiteLive.Pipeline/Processors/SendTweetsToFollowersProcessor.cs

15 lines
447 B
C#
Raw Normal View History

2020-07-18 23:35:19 -04:00
using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.Pipeline.Contracts;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Processors
{
public class SendTweetsToFollowersProcessor : ISendTweetsToFollowersProcessor
{
public Task ProcessAsync(UserWithTweetsToSync userWithTweetsToSync, CancellationToken ct)
{
throw new System.NotImplementedException();
}
}
}