mirror of
https://github.com/openai/codex.git
synced 2026-05-01 01:47:18 +00:00
- create `codex-git-utils` and move the shared git helpers into it with file moves preserved for diff readability - move the `GitInfo` helpers out of `core` so stacked rollout work can depend on the shared crate without carrying its own git info module --------- Co-authored-by: Ahmed Ibrahim <219906144+aibrahim-oai@users.noreply.github.com> Co-authored-by: Codex <noreply@openai.com>
31 lines
623 B
Rust
31 lines
623 B
Rust
mod api;
|
|
|
|
pub use api::ApplyOutcome;
|
|
pub use api::ApplyStatus;
|
|
pub use api::AttemptStatus;
|
|
pub use api::CloudBackend;
|
|
pub use api::CloudTaskError;
|
|
pub use api::CreatedTask;
|
|
pub use api::DiffSummary;
|
|
pub use api::Result;
|
|
pub use api::TaskId;
|
|
pub use api::TaskListPage;
|
|
pub use api::TaskStatus;
|
|
pub use api::TaskSummary;
|
|
pub use api::TaskText;
|
|
pub use api::TurnAttempt;
|
|
|
|
#[cfg(feature = "mock")]
|
|
mod mock;
|
|
|
|
#[cfg(feature = "online")]
|
|
mod http;
|
|
|
|
#[cfg(feature = "mock")]
|
|
pub use mock::MockClient;
|
|
|
|
#[cfg(feature = "online")]
|
|
pub use http::HttpClient;
|
|
|
|
// Reusable apply engine now lives in the shared crate `codex-git-utils`.
|