-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add caching for CLI #75
Conversation
4815041
to
5a06dca
Compare
@@ -144,6 +144,32 @@ impl From<OutputFormat> for OutputFormatter { | |||
} | |||
} | |||
|
|||
async fn read_popgetter(config: Config) -> anyhow::Result<Popgetter> { |
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.
Consider moving this implementation to be part of the popgetter crate as part of #46 if the same caching approach can be used.
} | ||
use paths as PATHS; |
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.
Refactored as module since no methods expected (see #56 (comment))
Closes #74