feat: add constructor for OverteClient to initialize domain URL

This commit is contained in:
MayaTheShy
2025-11-09 02:17:08 -05:00
parent 2e70529a1f
commit 078d035008

View File

@@ -121,6 +121,10 @@ static std::string generateUUID() {
return ss.str();
}
OverteClient::OverteClient(std::string domainUrl)
: m_domainUrl(std::move(domainUrl)) {
}
OverteClient::~OverteClient() {
// Destructor implementation (required for unique_ptr with forward-declared type)
}