mirror of
https://github.com/openai/codex.git
synced 2026-04-29 17:06:51 +00:00
Handle cloud requirements 401s with the same auth recovery flow as normal requests, so permanent refresh failures surface the existing user-facing auth message instead of a generic workspace-config load error.
12 lines
320 B
Rust
12 lines
320 B
Rust
mod client;
|
|
pub mod types;
|
|
|
|
pub use client::Client;
|
|
pub use client::RequestError;
|
|
pub use types::CodeTaskDetailsResponse;
|
|
pub use types::CodeTaskDetailsResponseExt;
|
|
pub use types::ConfigFileResponse;
|
|
pub use types::PaginatedListTaskListItem;
|
|
pub use types::TaskListItem;
|
|
pub use types::TurnAttemptsSiblingTurnsResponse;
|