Skip to main content

Mountain/IPC/WindServiceAdapters/
OsInfo.rs

1
2//! Minimal OS slice surfaced to Wind - just the release / OS
3//! identifier string.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct Struct {
9	pub release:String,
10}