terrazzo-terminal 0.2.8

A simple web-based terminal emulator built on Terrazzo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg(feature = "terminal")]

mod api;
#[cfg(feature = "client")]
mod attach;
#[cfg(feature = "client")]
mod javascript;
#[cfg(feature = "server")]
mod service;
#[cfg(feature = "client")]
mod terminal_tab;
#[cfg(feature = "client")]
mod terminal_tabs;
#[cfg(feature = "client")]
pub mod ui;