blob: 379982e52f0972dc57bed9f81867ae56ee273892 [file] [log] [blame]
#include <gloo/common/error.h>
#include <pybind11/pybind11.h>
namespace gloo {
namespace python {
namespace py = pybind11;
PYBIND11_MODULE(python, m) {
m.doc() = "Python interface for Gloo";
py::register_exception<IoException>(m, "IoError");
}
} // namespace python
} // namespace gloo