11 lines
279 B
Rust
11 lines
279 B
Rust
// 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};
|