linutil/src/state.rs
2024-07-28 17:29:13 +02:00

7 lines
95 B
Rust

use crate::theme::Theme;
pub struct AppState {
/// Selected theme
pub theme: Theme,
}