Files
codex/codex-rs/core/src/command_safety/mod.rs
iceweasel-oai 0e58870634 adds a windows-specific method to check if a command is safe (#4119)
refactors command_safety files into its own package, so we can add
platform-specific ones
Also creates a windows-specific of `is_known_safe_command` that just
returns false always, since that is what happens today.
2025-09-24 14:03:43 -07:00

4 lines
86 B
Rust

pub mod is_safe_command;
#[cfg(target_os = "windows")]
pub mod windows_safe_commands;