Benjamin Ross
Benjamin Ross
@abhinav and @Groxx that is a great suggestion, my original thoughts were to specify the implementation but I just didn't know how to do that in "fx". This makes more...
ok so just for clarity's sake based on these comments this is how it would work based on my original example ```golang package a type Foo struct {...} func NewFoo()...
created a draft pull request https://github.com/uber-go/fx/pull/938
One other thing I noticed about tags, is that if you provide more tags than there are inputs to `f` it will ignore the extra tags, perhaps this should return...
the proper gremlin syntax for what you are trying to do is > g.addV('label').property(id, 'uuid') Note that "label" is in single quotes, "uuid" is in single quotes, and id is...
Yes that would work.
One issue here is the naming collision since there is already ``` var Private = privateOption{} ``` Perhaps this can be named as ``` fx.PrivateScope(...) ```