| 21 | |
| 22 | #[pyclass(module = "megflow")] |
| 23 | pub struct Graph { |
| 24 | graph: Option<MainGraph>, |
| 25 | handle: Option<flow_rs::rt::task::JoinHandle<Result<()>>>, |
| 26 | inps: HashMap<String, PyObject>, |
| 27 | outs: HashMap<String, PyObject>, |
| 28 | } |
| 29 | |
| 30 | static ONCE_INIT: Once = Once::new(); |
| 31 |