Skip to main content

orchestral_cli/remote/
mod.rs

1mod api;
2mod assets;
3mod auth;
4mod server;
5mod session_coordinator;
6mod state;
7
8pub use api::{router, RemoteApiState};
9pub use assets::{router as asset_router, router_with_artifact_origin};
10pub use auth::{GatewayAuthenticator, GatewayPrincipal, JwtGatewayAuthenticator, JwtGatewayConfig};
11pub(crate) use server::serve;
12pub use server::ServeCommand;
13pub use state::{PairingTicket, RemoteRegistry};