Declare the python api with pybind11
| 2005 | |
| 2006 | // Declare the python api with pybind11 |
| 2007 | PYBIND11_MODULE(liblgraph_python_api, m) { |
| 2008 | python::register_python_api(m); |
| 2009 | python::register_lgraph_plugin(m); |
| 2010 | python::register_gemini_adapter(m); |
| 2011 | } |
| 2012 | } // namespace python |
| 2013 | } // namespace lgraph_api |
| 2014 |
nothing calls this directly
no test coverage detected