2022-09-01 14:12:55 +03:00
|
|
|
/*
|
2024-06-26 12:34:36 +03:00
|
|
|
* AquaVM Workflow Engine
|
2022-09-01 14:12:55 +03:00
|
|
|
*
|
2024-06-26 12:34:36 +03:00
|
|
|
* Copyright (C) 2024 Fluence DAO
|
2022-09-01 14:12:55 +03:00
|
|
|
*
|
2024-06-26 12:34:36 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation version 3 of the
|
|
|
|
* License.
|
2022-09-01 14:12:55 +03:00
|
|
|
*
|
2024-06-26 12:34:36 +03:00
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2022-09-01 14:12:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
pub mod asserts;
|
|
|
|
pub mod ephemeral;
|
|
|
|
pub mod execution;
|
2022-11-24 19:33:55 +03:00
|
|
|
mod queue;
|
2022-09-01 14:12:55 +03:00
|
|
|
pub mod services;
|
|
|
|
pub mod transform;
|
|
|
|
|
2023-10-13 23:19:02 +04:00
|
|
|
pub use ephemeral::Network;
|
2022-11-24 19:33:55 +03:00
|
|
|
pub use execution::AirScriptExecutor;
|
2023-10-13 23:19:02 +04:00
|
|
|
pub use transform::walker::TransformedAirScript;
|