How to implement an extension with one hidden module and one script module

Hi folks,

I am implementing an extension with one script module. But some core functions are written by C++. I plan to have one backend loadable module connect to the script module. Anyone has an idea that I can make the backend loadable module hidden in the extension? By ‘hidden’, I mean when users install my extension, can’t see anything about that module.

Thanks a million,

I did the exact same thing with GelDosimetryAnalysis:

Thanks @cpinter. That is what I want.