diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-02-29 03:54:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 03:54:16 +0000 |
commit | 3a43568481108545178f5dd2f928d40736dc987a (patch) | |
tree | 5c9deec7135b5c9ace35aa2c13b238b3fdb53bb1 /cli/file_fetcher.rs | |
parent | 814eb420608b21d3d79d3580317d2e803d240589 (diff) |
feat(lsp): jsr specifier completions (#22612)
Diffstat (limited to 'cli/file_fetcher.rs')
-rw-r--r-- | cli/file_fetcher.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs index a74a14a3f..5b530cf6d 100644 --- a/cli/file_fetcher.rs +++ b/cli/file_fetcher.rs @@ -186,6 +186,10 @@ impl FileFetcher { } } + pub fn http_cache(&self) -> &Arc<dyn HttpCache> { + &self.http_cache + } + pub fn cache_setting(&self) -> &CacheSetting { &self.cache_setting } |