It seems like you could use some serious refactoring there, rather than merely
organizing your files.
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to golang-nuts
I'm developing a library where i have 1 common interface and a lot of
implementations (likely hundreds).
A single implementation is not too complex and can reside in a single
source file but then i have visibility issues with constants etc. Should i
just create a package for each implementation?