mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-24 22:14:28 +00:00
7 lines
95 B
Rust
7 lines
95 B
Rust
use crate::theme::Theme;
|
|
|
|
pub struct AppState {
|
|
/// Selected theme
|
|
pub theme: Theme,
|
|
}
|