mod bridge;
mod components;
mod network;
mod server;
mod server_support;
mod stream;
use std::path::PathBuf;
pub use server::run;
/// Settings supplied by the `codex web` command.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct WebOptions {
pub port: u16,
pub open_browser: bool,
pub cwd: PathBuf,
pub codex_executable: PathBuf,
pub config_overrides: Vec<String>,
pub strict_config: bool,
}