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