debugger_tools.rs

1mod dap_log;
2pub use dap_log::*;
3
4use gpui::App;
5
6pub fn init(cx: &mut App) {
7    dap_log::init(cx);
8}