mirror of
https://github.com/openai/codex.git
synced 2026-05-17 09:43:19 +00:00
Before this, the TUI was starting 2 app-server. One to check the login status and one to actually start the session This PR make only one app-server startup and defer the login check in async, outside of the frame rendering path --------- Co-authored-by: Codex <noreply@openai.com>
31 lines
810 B
Rust
31 lines
810 B
Rust
pub(crate) mod amend;
|
|
pub(crate) mod decision;
|
|
pub(crate) mod error;
|
|
pub(crate) mod execpolicycheck;
|
|
mod executable_name;
|
|
pub(crate) mod parser;
|
|
pub(crate) mod policy;
|
|
pub mod rule;
|
|
|
|
pub use amend::AmendError;
|
|
pub use amend::blocking_append_allow_prefix_rule;
|
|
pub use amend::blocking_append_network_rule;
|
|
pub use decision::Decision;
|
|
pub use error::Error;
|
|
pub use error::ErrorLocation;
|
|
pub use error::Result;
|
|
pub use error::TextPosition;
|
|
pub use error::TextRange;
|
|
pub use execpolicycheck::ExecPolicyCheckCommand;
|
|
pub use parser::PolicyParser;
|
|
pub use policy::Evaluation;
|
|
pub use policy::MatchOptions;
|
|
pub use policy::Policy;
|
|
pub use rule::NetworkRuleProtocol;
|
|
pub use rule::PatternToken;
|
|
pub use rule::PrefixPattern;
|
|
pub use rule::PrefixRule;
|
|
pub use rule::Rule;
|
|
pub use rule::RuleMatch;
|
|
pub use rule::RuleRef;
|