allow getting client over specific transport

This commit is contained in:
Dario Gabriel Lipicar
2026-04-24 17:48:11 -03:00
parent c38f507214
commit ee0fbd1132
6 changed files with 98 additions and 1 deletions
+12
View File
@@ -13,6 +13,18 @@ LogosAPIClient::LogosAPIClient(const QString& module_to_talk_to, const QString&
{
}
LogosAPIClient::LogosAPIClient(const QString& module_to_talk_to,
const QString& origin_module,
TokenManager* token_manager,
const LogosTransportConfig& transport,
QObject *parent)
: QObject(parent)
, m_consumer(new LogosAPIConsumer(module_to_talk_to, origin_module, token_manager, transport, this))
, m_token_manager(token_manager)
, m_origin_module(origin_module)
{
}
LogosAPIClient::~LogosAPIClient()
{
}