This commit is contained in:
Josh Thomas 2025-05-17 16:56:14 -05:00
parent 5926ba40b1
commit 43f64c9fb5

View file

@ -2,11 +2,10 @@ use std::fmt::Display;
use std::sync::Arc;
use std::sync::OnceLock;
pub use messages::*;
use tower_lsp_server::jsonrpc::Error;
use tower_lsp_server::Client;
pub use messages::*;
static CLIENT: OnceLock<Arc<Client>> = OnceLock::new();
pub fn init_client(client: Client) {