noctua/src/ui/mod.rs

20 lines
401 B
Rust
Raw Normal View History

// SPDX-License-Identifier: GPL-3.0-or-later
// src/ui/mod.rs
//
// UI layer: COSMIC application, views, and components.
pub mod app;
pub mod message;
pub mod model;
pub mod update;
pub mod components;
pub mod views;
// 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;