mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-21 15:32:53 +10:00
6630ccd5e0
Signed-off-by: quexeky <git@quexeky.dev>
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)
|
|
}
|