1
0
mirror of synced 2024-06-28 14:57:40 +00:00
Tapeti/ITopology.cs

21 lines
268 B
C#

using System.Collections.Generic;
namespace Tapeti
{
public interface ITopology
{
IEnumerable<IQueue> Queues();
}
public interface IQueue
{
IEnumerable<IBinding> Bindings();
}
public interface IBinding
{
}
}