mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
13 lines
327 B
C++
13 lines
327 B
C++
|
|
#include "Client.h"
|
|
|
|
namespace milvus {
|
|
namespace message_client {
|
|
|
|
MsgClient::MsgClient(const std::string &serviceUrl) : pulsar::Client(serviceUrl) {}
|
|
|
|
MsgClient::MsgClient(const std::string &serviceUrl, const pulsar::ClientConfiguration &clientConfiguration)
|
|
: pulsar::Client(serviceUrl, clientConfiguration) {}
|
|
|
|
}
|
|
} |