-
I'm considering changing the layout of my project as advised in the docs: Currently, my module is a shared library, no directories and no python files.
then this:
becomes this:
I could add Does anyone have a better solution? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You could import the base module with |
Beta Was this translation helpful? Give feedback.
You could import the base module with
nb::module_::import_()
and then pass that module to the variousnb::class_<>
andm.def
calls.