1
0
mirror of synced 2024-07-05 17:50:35 +00:00
Tapeti/Connection/TapetiPublisher.cs
2016-11-17 09:05:39 +01:00

14 lines
247 B
C#

namespace Tapeti.Connection
{
public class TapetiPublisher : IPublisher
{
private readonly TapetiWorker worker;
public TapetiPublisher(TapetiWorker worker)
{
this.worker = worker;
}
}
}