Add mocked broker client

This commit is contained in:
2025-10-09 19:12:30 +09:00
parent bb91136d42
commit 209cd79f01
32 changed files with 809 additions and 225 deletions

View File

@ -0,0 +1,11 @@
using Hcs.Broker;
using Hcs.Broker.MessageCapturer;
using Hcs.WebApp.Config;
namespace Hcs.WebApp.Services
{
public interface IClientProvider
{
IClient CreateClient(BrokerConfig config, Broker.Logger.ILogger logger, IMessageCapturer messageCapturer);
}
}