Files @ ada07cee1f99
Branch filter:

Location: CSY/reowolf/src/lib.rs

ada07cee1f99 301 B application/rls-services+xml Show Annotation Show as Raw Download as Raw
Christopher Esterhuyse
refactored the endpoint manager to support sending and receiving of messages. moved some behavior from src/runtime/communication to src/runtime/endpoints
#[macro_use]
mod macros;

mod common;
mod protocol;
mod runtime;

pub use common::{ConnectorId, EndpointPolarity, Payload, Polarity, PortId};
pub use protocol::ProtocolDescription;
pub use runtime::{error, Connector, DummyLogger, FileLogger, VecLogger};

#[cfg(feature = "ffi")]
pub use runtime::ffi;