Create a new crate

This commit is contained in:
Kirill Bulatov 2023-12-14 15:20:49 +02:00
parent 229b5aa8f7
commit 64925231b0
7 changed files with 1881 additions and 0 deletions

View file

@ -0,0 +1,15 @@
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);
}