orchestra_toolkit/
lib.rs

1/* Copyright 2024-2025 LEDR Technologies Inc.
2* This file is part of the Orchestra library, which helps developer use our Orchestra technology which is based on AvesTerra, owned and developped by Georgetown University, under license agreement with LEDR Technologies Inc.
3*
4* The Orchestra library is a free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
5*
6* The Orchestra library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
7*
8* You should have received a copy of the GNU Lesser General Public License along with the Orchestra library. If not, see <https://www.gnu.org/licenses/>.
9*
10* If you have any questions, feedback or issues about the Orchestra library, you can contact us at support@ledr.io.
11*/
12
13#![allow(clippy::too_many_arguments)]
14
15mod avesterra_error;
16mod avial_error;
17mod avial_model;
18pub mod constants;
19mod entity;
20mod hgtp;
21mod key;
22mod locutor;
23mod name;
24mod session;
25mod string255;
26mod taxonomy;
27mod time_serde;
28mod value;
29
30pub use avesterra_error::AvesterraError;
31pub use avial_error::AvialError;
32pub use avial_model::*;
33pub use entity::Entity;
34pub use hgtp::{HGTPMessage, Token};
35pub use key::*;
36pub use locutor::Locutor;
37pub use name::*;
38pub use session::*;
39pub use string255::*;
40pub use taxonomy::*;
41pub use value::*;