mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
chore: import fixes
This commit is contained in:
parent
3e95ff9971
commit
7f41127f8b
2 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
use std::sync::Arc;
|
||||
use std::{net::TcpStream, sync::Mutex, collections::BTreeMap};
|
||||
|
||||
use codemp::operation::{OperationController, OperationFactory};
|
||||
use codemp::{client::CodempClient, operation::OperationProcessor};
|
||||
use codemp::operation::{OperationController, OperationFactory, OperationProcessor};
|
||||
use codemp::client::CodempClient;
|
||||
use codemp::proto::buffer_client::BufferClient;
|
||||
use rmpv::Value;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use std::{collections::HashMap, sync::Mutex};
|
||||
|
||||
use tokio::sync::broadcast;
|
||||
use tracing::{info, error, debug, warn};
|
||||
use tracing::{error, debug, warn};
|
||||
|
||||
use crate::proto::CursorMov;
|
||||
|
||||
|
|
Loading…
Reference in a new issue