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
16
#![cfg(feature = "logs-panel")]

mod client;
pub(crate) mod event;
pub(crate) mod state;
mod stream;
mod subscription;
mod tests;
mod tracing;

#[cfg(feature = "client")]
pub use self::client::panel::panel;
#[cfg(feature = "server")]
pub use self::tracing::EnableTracingError;
#[cfg(feature = "server")]
pub use self::tracing::init_tracing;