I have a golang project and in the need of expanding a small functionality i have two option:
- the new module exists in the form of a C++ lib and this can be imported to my golang project.
- write the code for the module to avoid any limitation between golang and c++.
which one to choose?