Files
komp_ac/komp-app/src/lib.rs
2026-09-05 23:34:42 +02:00

19 lines
490 B
Rust

//! 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 keybindings;
pub mod logic;
pub mod navigation;
mod search;
pub mod session;
pub mod transport;
pub mod typst;
pub mod value;