This commit is contained in:
Nicolas Constant
2023-01-05 23:58:58 -05:00
parent 3460c72895
commit 5b32a9021f

View File

@ -3,8 +3,8 @@ using System.Threading.Tasks;
using BirdsiteLive.DAL.Contracts;
using BirdsiteLive.DAL.Models;
namespace BirdsiteLive.Pipeline.Processors.SubTasks;
namespace BirdsiteLive.Pipeline.Processors.SubTasks
{
public class SendTweetsTaskBase
{
private readonly ISyncTweetsPostgresDal _syncTweetsPostgresDal;
@ -29,3 +29,4 @@ public class SendTweetsTaskBase
await _syncTweetsPostgresDal.SaveTweetAsync(tweet);
}
}
}