nodo_runtime 0.18.5

Runtime for NODO applications
Documentation
// Copyright 2024 David Weikersdorfer

mod app_executor;
mod configure;
mod inspector;
mod proto_report;
mod runtime;
mod schedule_executor;
mod sequence_executor;
mod sleep;
mod state_machine;

pub use app_executor::*;
pub use configure::*;
pub use inspector::*;
pub use runtime::*;
pub use schedule_executor::*;
pub use sequence_executor::*;
pub use sleep::*;
pub use state_machine::*;

pub mod proto {
    pub mod nodo {
        include!(concat!(env!("OUT_DIR"), "/nodo.rs"));
    }
}