perl_dap/server/config.rs
1use crate::server::mode::DapMode;
2
3/// DAP server configuration
4///
5/// Controls the operating mode, logging, and workspace context for the DAP server.
6pub struct DapConfig {
7 /// Logging level for DAP operations
8 pub log_level: String,
9 /// Operating mode (native or bridge)
10 pub mode: DapMode,
11 /// Workspace root directory
12 pub workspace_root: Option<std::path::PathBuf>,
13}