use nightly rustfmt and sort imports (#145)
Some checks are pending
lint / pre-commit (push) Waiting to run
release / build (push) Waiting to run
release / test (push) Waiting to run
release / release (push) Blocked by required conditions
test / generate-matrix (push) Waiting to run
test / Python , Django () (push) Blocked by required conditions
test / tests (push) Blocked by required conditions
zizmor 🌈 / zizmor latest via PyPI (push) Waiting to run

This commit is contained in:
Josh Thomas 2025-05-14 00:46:55 -05:00 committed by GitHub
parent 00140c58ca
commit e87c917cb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 143 additions and 60 deletions

View file

@ -1,10 +1,13 @@
use crate::queue::Queue;
use crate::session::Session;
use std::sync::Arc;
use tokio::sync::RwLock;
use tower_lsp_server::jsonrpc::Result as LspResult;
use tower_lsp_server::lsp_types::*;
use tower_lsp_server::{Client, LanguageServer};
use tower_lsp_server::Client;
use tower_lsp_server::LanguageServer;
use crate::queue::Queue;
use crate::session::Session;
const SERVER_NAME: &str = "Django Language Server";
const SERVER_VERSION: &str = "0.1.0";