19 lines
490 B
Rust
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;
|