Re: [go-nuts] Re: [Advice needed] How to vendor common dependencies for plugins

2018-03-19 Thread Jay Guo
Hi Matt, basically we need to be able to install some user plugins at runtime. I'm not sure Go `plugin` is avoidable in this case... - J On Mon, Mar 19, 2018 at 3:57 AM, Matt Harden wrote: > Do you have to use plugins? I would avoid them whenever possible. What >

Re: [go-nuts] Re: [Advice needed] How to vendor common dependencies for plugins

2018-03-18 Thread Matt Harden
Do you have to use plugins? I would avoid them whenever possible. What benefit do you expect to get from using them? On Sun, Mar 11, 2018 at 1:03 AM Jay Guo wrote: > Bump.. any thoughts? Thanks! > > - J > > > On Thursday, March 8, 2018 at 2:03:37 PM UTC+8, Jay Guo

[go-nuts] Re: [Advice needed] How to vendor common dependencies for plugins

2018-03-11 Thread Jay Guo
Bump.. any thoughts? Thanks! - J On Thursday, March 8, 2018 at 2:03:37 PM UTC+8, Jay Guo wrote: > > Golang gurus, > > I'm currently trying to modularize my project with the help of Golang > plugin, and I come across this dependency vendoring dilemma. > > Let's say we have a project layout: > >

[go-nuts] Re: [Advice needed] How to vendor common dependencies for plugins

2018-03-08 Thread Michael Andersen
I am interested in this problem too, especially dealing with golang.org/x/net/trace which is used by grpc which is used by multiple packages I import. On Wednesday, March 7, 2018 at 10:03:37 PM UTC-8, Jay Guo wrote: > > Golang gurus, > > I'm currently trying to modularize my project with the