refactor(core): reorganize module structure
This commit is contained in:
parent
59ab96be98
commit
a6c1863f57
22 changed files with 231 additions and 164 deletions
11
core/src/document/session/mod.rs
Normal file
11
core/src/document/session/mod.rs
Normal 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};
|
||||
Loading…
Add table
Add a link
Reference in a new issue