Skip to content

Commit 5e96d2b

Browse files
committed
format
1 parent 2441850 commit 5e96d2b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

codex-rs/core/src/codex.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ use tracing::warn;
7272

7373
use crate::ModelProviderInfo;
7474
use crate::WireApi;
75+
use crate::apply_patch_approval_store::ApplyPatchApprovalStore;
7576
use crate::client::ModelClient;
7677
use crate::client_common::Prompt;
7778
use crate::client_common::ResponseEvent;
@@ -92,7 +93,6 @@ use crate::feedback_tags;
9293
use crate::mcp::auth::compute_auth_statuses;
9394
use crate::mcp_connection_manager::McpConnectionManager;
9495
use crate::model_provider_info::CHAT_WIRE_API_DEPRECATION_SUMMARY;
95-
use crate::apply_patch_approval_store::ApplyPatchApprovalStore;
9696
use crate::project_doc::get_user_instructions;
9797
use crate::protocol::AgentMessageContentDeltaEvent;
9898
use crate::protocol::AgentReasoningSectionBreakEvent;

codex-rs/core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ pub mod codex;
1515
mod codex_conversation;
1616
mod compact_remote;
1717
pub use codex_conversation::CodexConversation;
18+
mod apply_patch_approval_store;
1819
mod codex_delegate;
1920
mod command_safety;
2021
pub mod config;
@@ -34,7 +35,6 @@ pub mod landlock;
3435
pub mod mcp;
3536
mod mcp_connection_manager;
3637
pub mod models_manager;
37-
mod apply_patch_approval_store;
3838
pub use mcp_connection_manager::MCP_SANDBOX_STATE_CAPABILITY;
3939
pub use mcp_connection_manager::MCP_SANDBOX_STATE_METHOD;
4040
pub use mcp_connection_manager::SandboxState;

codex-rs/core/src/state/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ use std::sync::Arc;
22

33
use crate::AuthManager;
44
use crate::RolloutRecorder;
5+
use crate::apply_patch_approval_store::ApplyPatchApprovalStore;
56
use crate::exec_policy::ExecPolicyManager;
67
use crate::mcp_connection_manager::McpConnectionManager;
78
use crate::models_manager::manager::ModelsManager;
8-
use crate::apply_patch_approval_store::ApplyPatchApprovalStore;
99
use crate::skills::SkillsManager;
1010
use crate::tools::sandboxing::ApprovalStore;
1111
use crate::unified_exec::UnifiedExecSessionManager;

0 commit comments

Comments
 (0)