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

10 lines
140 B
C#

using System;
namespace Tapeti
{
public interface IRoutingKeyStrategy
{
string GetRoutingKey(Type messageType);
}
}