Perhaps I am suffering from "C" brain, but I'm wondering if it is possible to distribute a pre-compiled Go library to be used without having access to the source.
In the C world I can link to a binary-only library via including the header file to define the data structs and funcs I will access in my main.
My initial foray into Go would indicate that I need to source package to know the necessary info to use a pre-compiled library.
I feel like I may be missing something obvious, but I *am* missing it if it is there.
How would I distribute a pre-compiled Go library for use elsewhere without also distributing the source?
Thanks in advance for any insight into this.
- Art