Rename installation.rs -> github.rs now that is all it concerns

This commit is contained in:
Julia 2023-03-28 11:51:09 -04:00
parent 350f8ed304
commit ee3ac9c344
7 changed files with 6 additions and 6 deletions

View file

@ -9,9 +9,9 @@ use theme::ThemeRegistry;
mod c; mod c;
mod elixir; mod elixir;
mod github;
mod go; mod go;
mod html; mod html;
mod installation;
mod json; mod json;
mod language_plugin; mod language_plugin;
mod lua; mod lua;

View file

@ -1,4 +1,4 @@
use super::installation::{latest_github_release, GitHubLspBinaryVersion}; use super::github::{latest_github_release, GitHubLspBinaryVersion};
use anyhow::{anyhow, Context, Result}; use anyhow::{anyhow, Context, Result};
use async_trait::async_trait; use async_trait::async_trait;
use client::http::HttpClient; use client::http::HttpClient;

View file

@ -1,4 +1,4 @@
use super::installation::{latest_github_release, GitHubLspBinaryVersion}; use super::github::{latest_github_release, GitHubLspBinaryVersion};
use anyhow::{anyhow, Context, Result}; use anyhow::{anyhow, Context, Result};
use async_trait::async_trait; use async_trait::async_trait;
use client::http::HttpClient; use client::http::HttpClient;

View file

@ -1,4 +1,4 @@
use super::installation::latest_github_release; use super::github::latest_github_release;
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use async_trait::async_trait; use async_trait::async_trait;
use client::http::HttpClient; use client::http::HttpClient;

View file

@ -10,7 +10,7 @@ use language::{LanguageServerBinary, LanguageServerName};
use smol::fs; use smol::fs;
use util::{async_iife, ResultExt}; use util::{async_iife, ResultExt};
use super::installation::{latest_github_release, GitHubLspBinaryVersion}; use super::github::{latest_github_release, GitHubLspBinaryVersion};
#[derive(Copy, Clone)] #[derive(Copy, Clone)]
pub struct LuaLspAdapter; pub struct LuaLspAdapter;

View file

@ -1,4 +1,4 @@
use super::installation::{latest_github_release, GitHubLspBinaryVersion}; use super::github::{latest_github_release, GitHubLspBinaryVersion};
use anyhow::{anyhow, Result}; use anyhow::{anyhow, Result};
use async_compression::futures::bufread::GzipDecoder; use async_compression::futures::bufread::GzipDecoder;
use async_trait::async_trait; use async_trait::async_trait;