So the title is pretty much the summary I can squeeze in - I have to take a quite complex decision tree, generate some Go function that has certain signature, compile it as a plugin and then send the ".so" object over network and hot-plug it into a running application.
While compiling go code / sending over net seems doable with standard tools - I wonder how can I execute the plugin function without spawning a process / doing some IPC.
Maybe this is too esoteric 🙂