-
Notifications
You must be signed in to change notification settings - Fork 6
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
feat: get sdk response types up to standards #63
Conversation
eaddingtonwhite
commented
Jan 27, 2023
- removes signing key impl to break into its own package
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.
couple nits and I think maybe get @pgautier404 to review, otherwise lgtm
// CacheGetResponse Base type for possible responses a cache GET can return. Miss || Hit | ||
type CacheGetResponse struct { | ||
responseType cacheGetResponseTypes | ||
value []byte |
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.
so these are not accessible to users because they are lowercase, correct?
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.
correct :) golang!
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.
LGTM, but should probably get another set of eyes on this
Co-authored-by: pgautier404 <pgautier404@users.noreply.github.com>
…sdk-go into feat/response-refactor
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.
Looks great, thanks!