mirror of
https://github.com/openai/codex.git
synced 2026-05-01 01:47:18 +00:00
30 lines
585 B
Rust
30 lines
585 B
Rust
#![deny(clippy::unwrap_used, clippy::expect_used)]
|
|
|
|
mod api;
|
|
|
|
pub use api::ApplyOutcome;
|
|
pub use api::ApplyStatus;
|
|
pub use api::CloudBackend;
|
|
pub use api::CreatedTask;
|
|
pub use api::DiffSummary;
|
|
pub use api::Error;
|
|
pub use api::Result;
|
|
pub use api::TaskId;
|
|
pub use api::TaskStatus;
|
|
pub use api::TaskSummary;
|
|
pub use api::TaskText;
|
|
|
|
#[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-apply`.
|