// SPDX-License-Identifier: Apache-2.0 #include #include "../connector_pybind_utils.h" #include "connector.h" namespace py = pybind11; PYBIND11_MODULE(lmcache_redis, m) { py::class_(m, "LMCacheRedisClient") .def(py::init(), py::arg("host"), py::arg("port"), py::arg("num_workers"), py::arg("username") = "", py::arg("password") = "") LMCACHE_BIND_CONNECTOR_METHODS(lmcache::connector::RedisConnector); }