noctua/core/src/document/session/mod.rs

12 lines
279 B
Rust
Raw Normal View History

// SPDX-License-Identifier: GPL-3.0-or-later
// src/document/session/mod.rs
//
// Session subsystem: data model, commands, and persistence.
pub mod command;
pub mod data;
pub mod store;
pub use command::SessionCommand;
pub use data::{CollectionKind, SessionData, SessionItem};