diff --git a/src/runtime2/registry.rs b/src/runtime2/registry.rs new file mode 100644 index 0000000000000000000000000000000000000000..892b220a213f1adf8f98e4a86ef30d74aed007ab --- /dev/null +++ b/src/runtime2/registry.rs @@ -0,0 +1,14 @@ +use std::collections::HashMap; + +use crate::PortId; + +struct PortDesc { + port_id: u32, + owning_connector_id: u32, +} + +pub(crate) struct Registry { + connector_counter: u32, + port_counter: u32, + ports: HashMap +} \ No newline at end of file