internal: remove tracing/mod.rs

This commit is contained in:
David Barsky 2024-01-30 13:37:27 -05:00
parent d923d620f2
commit 17d2e8d910
2 changed files with 7 additions and 2 deletions

View File

@ -37,9 +37,14 @@ mod handlers {
pub(crate) mod request;
}
pub mod tracing {
pub mod config;
pub use config::Config;
pub mod hprof;
}
pub mod config;
pub mod lsp;
pub mod tracing;
use self::lsp::ext as lsp_ext;
#[cfg(test)]

View File

@ -14,7 +14,7 @@
};
use tracing_tree::HierarchicalLayer;
pub mod hprof;
use crate::tracing::hprof;
pub struct Config<T> {
pub writer: T,