server-master/srcs/PhoenixLib.Messaging/Internal/Routing/RoutingInformationFactory.cs
2026-02-10 18:21:30 +01:00

9 lines
No EOL
283 B
C#

using System;
namespace PhoenixLib.ServiceBus.Routing
{
internal class RoutingInformationFactory : IRoutingInformationFactory
{
public IRoutingInformation Create(Type type, string topic, string eventType) => new RoutingInformation(type, topic, eventType);
}
}