mirror of
https://github.com/openai/codex.git
synced 2026-05-01 09:56:37 +00:00
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.
4 lines
86 B
Rust
4 lines
86 B
Rust
pub mod is_safe_command;
|
|
#[cfg(target_os = "windows")]
|
|
pub mod windows_safe_commands;
|