2020-10-15 17:31:56 +03:00
|
|
|
/*
|
2024-06-26 12:34:36 +03:00
|
|
|
* AquaVM Workflow Engine
|
2020-10-15 17:31:56 +03:00
|
|
|
*
|
2024-06-26 12:34:36 +03:00
|
|
|
* Copyright (C) 2024 Fluence DAO
|
2020-10-15 17:31:56 +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.
|
2020-10-15 17:31:56 +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/>.
|
2020-10-15 17:31:56 +03:00
|
|
|
*/
|
|
|
|
|
2023-03-21 19:12:04 +07:00
|
|
|
mod cid_state;
|
2021-08-24 16:14:15 +03:00
|
|
|
mod context;
|
2023-09-04 22:57:51 +03:00
|
|
|
mod instruction_error;
|
2021-10-20 23:35:46 +03:00
|
|
|
mod scalar_variables;
|
2023-06-04 21:14:59 +03:00
|
|
|
mod stream_maps_variables;
|
2021-11-24 17:57:14 +03:00
|
|
|
mod streams_variables;
|
2020-10-15 17:31:56 +03:00
|
|
|
|
2023-09-04 22:57:51 +03:00
|
|
|
pub use instruction_error::*;
|
2021-12-28 16:59:55 +03:00
|
|
|
|
2023-03-21 19:12:04 +07:00
|
|
|
pub use cid_state::ExecutionCidState;
|
2023-10-13 23:19:02 +04:00
|
|
|
pub(crate) use cid_state::ResolvedServiceInfo;
|
2021-10-04 10:58:00 +03:00
|
|
|
pub(crate) use context::*;
|
2021-10-20 23:35:46 +03:00
|
|
|
pub(crate) use scalar_variables::*;
|
2023-06-04 21:14:59 +03:00
|
|
|
pub(crate) use stream_maps_variables::*;
|
2021-11-24 17:57:14 +03:00
|
|
|
pub(crate) use streams_variables::*;
|