jupiter_rs/
ops.rs

1use crate::platform::Platform;
2use std::sync::Arc;
3
4struct Operation {
5    label: String,
6    state: String,
7    active: bool,
8}
9
10pub struct Handle {}
11
12pub struct Operations {}
13
14impl Operations {
15    pub fn create(label: impl AsRef<str>) -> Handle {
16        unimplemented!();
17    }
18}
19
20pub fn install(platform: Arc<Platform>) {}