inexor_rgf_core_reactive/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(register_tool)]
#![register_tool(tarpaulin)]

pub use behaviour::*;
pub use entity::*;
pub use property::*;
pub use relation::*;

use inexor_rgf_core_model as model;

pub mod behaviour;
pub mod entity;
pub mod property;
pub mod relation;

#[cfg(test)]
#[tarpaulin::ignore]
pub mod tests;