16 lines
349 B
Rust
16 lines
349 B
Rust
//! The app's pure logic, shared between the server and any Rust client --
|
|
//! see `docs/CLIENT_CORE.md` for what lives here and what does
|
|
//! not yet.
|
|
|
|
pub mod ansi;
|
|
pub mod api;
|
|
pub mod config;
|
|
pub mod event_stream;
|
|
pub mod highlight;
|
|
pub mod notifications;
|
|
pub mod sse;
|
|
pub mod transcript_cache;
|
|
pub mod transcript_fold;
|
|
|
|
pub use event_model::*;
|