mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-13 16:22:43 +10:00
7 lines
165 B
Rust
7 lines
165 B
Rust
use crate::process::process_manager::Platform;
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
|
|
pub enum Condition {
|
|
Os(Platform)
|
|
}
|