mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-30 14:17:02 +00:00
15 lines
320 B
Rust
15 lines
320 B
Rust
mod lsp_log;
|
|
mod syntax_tree_view;
|
|
|
|
#[cfg(test)]
|
|
mod lsp_log_tests;
|
|
|
|
use gpui::AppContext;
|
|
|
|
pub use lsp_log::{LogStore, LspLogToolbarItemView, LspLogView};
|
|
pub use syntax_tree_view::{SyntaxTreeToolbarItemView, SyntaxTreeView};
|
|
|
|
pub fn init(cx: &mut AppContext) {
|
|
lsp_log::init(cx);
|
|
syntax_tree_view::init(cx);
|
|
}
|