Cucumber/Cloud/Services/Broker/IBrokerService.cs

9 lines
196 B
C#
Raw Normal View History

using Cloud.Services.Broker.Support;
namespace Cloud.Services.Broker
{
2024-12-04 01:57:10 +04:00
public interface IBrokerService : IBrokerProducer, IBrokerConsumer
{
2024-12-04 01:57:10 +04:00
void ChangeBrokerIp(string ip);
}
}