| 68 | #endif |
| 69 | |
| 70 | extern "C" EXO_PLANET_C_API_EXPORT PyObject *PyInit_exo_planet_c_api() { |
| 71 | PyObject *m = PyModule_Create(&ThisModuleDef); |
| 72 | if (m == nullptr) { |
| 73 | return nullptr; |
| 74 | } |
| 75 | return m; |
| 76 | } |
nothing calls this directly
no outgoing calls
no test coverage detected