studio_worker/ws/mod.rs
1//! WebSocket worker-channel module.
2//!
3//! `types` mirrors the TypeScript wire-format types from
4//! `apps/studio/src/shared/types/workerWs.ts`. `client` wraps the
5//! `tokio-tungstenite` connection and exposes a session API to the
6//! runtime.
7pub mod client;
8pub mod session;
9pub mod types;