1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![doc = include_str!("../README.MD")]
#![allow(unused)]
#![warn(missing_docs)]
// #![deny(warnings)]

mod error;

pub mod agent;
pub mod consts;
pub mod decision;
pub mod definitions;
pub mod delegation;
pub mod execution;
pub mod knowledge_base;
pub mod module;
pub mod simulation;
pub mod states;
pub mod uuid;

mod utils;

pub use error::Error;
pub type Result<T> = std::result::Result<T, Error>;

pub use agent::Agent;

pub use yaaral;