9 lines
187 B
Rust
9 lines
187 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;
|