1
0
mirror of synced 2024-07-04 17:30:36 +00:00
Tapeti/Connection/TapetiPublisher.cs

14 lines
247 B
C#
Raw Normal View History

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