-
Notifications
You must be signed in to change notification settings - Fork 11
move DataClient from lookout to new sdk package #88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Lookout contains convenient wrapper for grpc data client. It's meant to be used by analyzers, so only dummy analyzer uses it currently. This commit moves the wrapper into lookout-sdk to allow all analyzers use it. I put it into new `sdk` package which is higher level sdk for Go than current pb. We also may reconsider which custom code belongs to pb and move the rest into this package to separate low level auto generated code from actual sdk API. Signed-off-by: Maxim Sukharev <[email protected]>
Signed-off-by: Maxim Sukharev <[email protected]>
Signed-off-by: Maxim Sukharev <[email protected]>
I think that's a good idea! 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice! thanks!
LGTM about moving the code. Before we merge this, I have a question about the destination folder.
Now it will be:
Should we have instead |
I also prefer having
|
I think |
sounds good to me |
Signed-off-by: Maxim Sukharev <[email protected]>
Lookout contains convenient wrapper for grpc data client.
It's meant to be used by analyzers, so only dummy analyzer uses it
currently.
This commit moves the wrapper into lookout-sdk to allow all analyzers
use it.
I put it into new
sdk
package which is higher level sdk for Go thancurrent pb. We also may reconsider which custom code belongs to pb and
move the rest into this package to separate low level auto generated
code from actual sdk API.