linutil/src/state.rs

10 lines
202 B
Rust
Raw Normal View History

use crate::theme::Theme;
2024-07-28 16:31:20 +01:00
use std::path::PathBuf;
pub struct AppState {
/// Selected theme
pub theme: Theme,
2024-07-28 16:31:20 +01:00
/// Path to the root of the unpacked files in /tmp
pub temp_path: PathBuf,
}