using unified system

This commit is contained in:
Filipriec
2026-08-30 07:49:19 +02:00
parent 80d61760a2
commit 408187cb57
30 changed files with 2754 additions and 225 deletions

15
komp-app/src/lib.rs Normal file
View File

@@ -0,0 +1,15 @@
//! Product-specific application code shared by the komp_ac frontends.
//!
//! This crate deliberately has no dependency on Ratatui, Crossterm, Tauri, or
//! a browser UI. Frontends own presentation and platform storage; this crate
//! owns client behavior that must not drift between them.
pub mod auth;
pub mod csv;
pub mod grpc;
pub mod import_export;
pub mod navigation;
mod search;
pub mod session;
pub mod transport;
pub mod value;