refactor: merge workspace (core/ + ui/) into a single flat binary crate

integrate CLI into main.rs, no lib.rs by design (YAGNI)
This commit is contained in:
mow 2026-03-10 19:20:57 +01:00
parent 9ec407d9aa
commit 1a0b8c49aa
27 changed files with 171 additions and 249 deletions

View file

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