//! Interactive terminal (PTY-bridged WebSocket). RFC-038.
//!
//! Provides:
//! - [`PtyManager`]: in-kernel session registry, GC tick, access control.
//! - [`PtySession`]: per-session state (PTY handle, principal, lifecycle).
//! - [`PtyError`]: error type for manager operations.
//!
//! The kernel exposes this through [`crate::kernel_handle::PtyApi`].
pub use PtyConfigSnapshot;
pub use PtyError;
pub use PtyManager;
pub use ;