Skip to main content

codex_app_server_client/
rest.rs

1mod auth;
2mod backend;
3mod openapi;
4mod routes;
5mod types;
6
7pub use auth::{bearer_auth, BearerAuthLayer, BearerAuthService};
8pub use backend::CodexRestBackend;
9pub use openapi::openapi_spec;
10pub use routes::{
11    router, router_with_backend, router_with_backend_and_options, router_with_backend_arc,
12    router_with_backend_arc_and_options, router_with_options, text_turn_router,
13    trusted_bridge_router,
14};
15pub use types::*;