1
0
forked from ROMEO/nexosim
2024-05-27 23:33:02 +02:00

14 lines
324 B
Rust

//! Simulation management through remote procedure calls.
mod codegen;
mod endpoint_registry;
#[cfg(feature = "grpc-service")]
pub mod grpc;
mod key_registry;
mod simulation_service;
#[cfg(feature = "wasm-service")]
pub mod wasm;
pub use endpoint_registry::EndpointRegistry;
pub use simulation_service::SimulationService;