noctua/src/ui/mod.rs

20 lines
415 B
Rust

// SPDX-License-Identifier: GPL-3.0-or-later
// src/ui/mod.rs
//
// UI layer: COSMIC application, views, and widgets.
pub mod app;
pub mod message;
pub mod model;
pub mod update;
pub mod components;
pub mod views;
pub mod widgets;
// Internal module for syncing model from DocumentManager
pub(crate) mod sync;
// Re-export main types
pub use app::NoctuaApp;
pub use message::AppMessage;
pub use model::AppModel;