mkalpiimg/src/setup/autostart.rs

15 lines
241 B
Rust
Raw Normal View History

2023-04-05 14:07:04 +02:00
use serde::Deserialize;
#[derive(Deserialize)]
#[serde(deny_unknown_fields)]
pub struct Autostart {
2023-04-21 14:15:43 +02:00
pub kiosk: Option<Kiosk>
2023-04-05 14:07:04 +02:00
}
#[derive(Deserialize)]
#[serde(deny_unknown_fields)]
pub struct Kiosk {
pub page: String,
pub user: String
}