Skip to main content

Mountain/IPC/WindServiceAdapters/
OsInfo.rs

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