Refactor client list management by moving it to separate files (clients.cc/clients.hh) to improve code organization and modularity.
21 lines
316 B
C++
21 lines
316 B
C++
/*
|
|
* Copyright (C) 2025-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
#include <seastar/core/sstring.hh>
|
|
#include <cstdint>
|
|
|
|
namespace vector_search {
|
|
|
|
struct uri {
|
|
seastar::sstring host;
|
|
std::uint16_t port;
|
|
};
|
|
|
|
} // namespace vector_search
|