routa-core 0.15.1

Routa.js core domain — models, stores, protocols, and JSON-RPC (transport-agnostic)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Storage Module — Unified storage layer for sessions and traces.
//!
//! Provides the folder slug algorithm, JSONL writer, and local storage providers
//! that mirror the TypeScript implementation for cross-platform consistency.

mod folder_slug;
mod jsonl_writer;
mod local_session_provider;

pub use folder_slug::*;
pub use jsonl_writer::*;
pub use local_session_provider::*;