Skip to main content

Mountain/IPC/WindServiceAdapters/
Profiles.rs

1
2//! Wind profile-state slice: every known profile, the home
3//! directory, and the active profile descriptor.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct Struct {
9	pub all:Vec<serde_json::Value>,
10
11	pub home:String,
12
13	pub profile:serde_json::Value,
14}