refactor(core): reorganize module structure

This commit is contained in:
mow 2026-03-08 17:41:05 +01:00
parent 59ab96be98
commit a6c1863f57
22 changed files with 231 additions and 164 deletions

View file

@ -0,0 +1,11 @@
// 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};