linutil/src/state.rs

7 lines
95 B
Rust
Raw Normal View History

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