pub mod error;
#[allow(clippy::module_inception)]
mod factory;
#[cfg(feature = "mock_behavior")]
mod json_config;
pub mod registry;
pub use factory::BehaviorTreeFactory;
pub use registry::BehaviorRegistry;
#[cfg(test)]
mod tests {
use super::*;
const fn is_normal<T: Sized + Send + Sync>() {}
#[test]
const fn normal_types() {
is_normal::<error::Error>();
is_normal::<BehaviorTreeFactory>();
is_normal::<BehaviorRegistry>();
}
}