Skip to main content

tty_web/
lib.rs

1//! **tty-web** — web-based terminal emulator library.
2//!
3//! Opens a real PTY in the browser over WebSocket. Can be used as a standalone
4//! binary or embedded as a library into other applications.
5
6pub mod config;
7pub(crate) mod pty;
8pub mod session;
9pub mod terminal;
10pub mod web;