1//! Scripting and observer system for par-term terminal emulator.
2//!
3//! Provides observer-pattern event forwarding from the terminal core to
4//! script subprocesses, along with per-tab script lifecycle management.
56pub mod manager;
7pub mod observer;
8pub mod process;
9pub mod protocol;