14 lines
247 B
C#
14 lines
247 B
C#
|
namespace Tapeti.Connection
|
|||
|
{
|
|||
|
public class TapetiPublisher : IPublisher
|
|||
|
{
|
|||
|
private readonly TapetiWorker worker;
|
|||
|
|
|||
|
|
|||
|
public TapetiPublisher(TapetiWorker worker)
|
|||
|
{
|
|||
|
this.worker = worker;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|