[go-nuts] Organizing a lot of implementations for single interface

2017-02-16 Thread Henry
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

[go-nuts] Organizing a lot of implementations for single interface

2017-02-15 Thread Luca Looz
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?