mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-02 02:17:44 +03:00
12 lines
203 B
Rust
12 lines
203 B
Rust
use std::sync::Arc;
|
|
|
|
use helix_event::send_blocking;
|
|
use tokio::sync::mpsc::Sender;
|
|
|
|
use crate::handlers::lsp::SignatureHelpInvoked;
|
|
use crate::Editor;
|
|
|
|
pub mod dap;
|
|
pub mod lsp;
|
|
|
|
pub struct Handlers {}
|