// SPDX-License-Identifier: Apache-2.0 #include #include "../connector_pybind_utils.h" #include "connector.h" namespace py = pybind11; PYBIND11_MODULE(lmcache_fs, m) { py::class_(m, "LMCacheFSClient") .def(py::init(), py::arg("base_path"), py::arg("num_workers"), py::arg("relative_tmp_dir") = "", py::arg("use_odirect") = false, py::arg("read_ahead_size") = 0) LMCACHE_BIND_CONNECTOR_METHODS(lmcache::connector::FSConnector); }