-
Notifications
You must be signed in to change notification settings - Fork 4
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: remove legacy sdk and related artifacts #265
Conversation
With the imminent release of the new SDK, we remove the legacy SDK from the code base, all related uitlities, tests, and examples.
This is used by the CLI to log in via browser. In the future we can add this directly in the CLI library as this is not related to the other client libraries.
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.
🧽
} | ||
} | ||
|
||
/// Initiate a login workflow. |
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.
I feel this code belongs in the CLI as opposed to here. The CLI is the sole consumer of this. If we believe that it has broader utility and want to support it with our 1.0 guarantees I can add it back here.
cc @cprice404
/// # let get_response = Get::Hit { value: momento::response::GetValue::new(vec![]) }; | ||
/// # let get_response = Get::Hit { value: GetValue::new(vec![]) }; |
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.
Many of the docstrings in this file were still referencing the legacy SDK.
With the imminent release of the new SDK, we remove the legacy SDK
from the code base, all related uitlities, tests, and examples.