microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
flowey/flowey_cli/src/pipeline_resolver/mod.rs
16lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | //! Code which resolves user-defined |
| 5 | //! [`Pipeline`](flowey_core::pipeline::Pipeline) objects into runnable code. |
| 6 | //! |
| 7 | //! Depending on the selected backend, different [`crate::flow_resolver`] |
| 8 | //! implementations will be used. |
| 9 | |
| 10 | pub mod ado_yaml; |
| 11 | // pub mod bash; // not maintained at the moment |
| 12 | pub mod common_yaml; |
| 13 | pub mod direct_run; |
| 14 | pub mod generic; |
| 15 | pub mod github_yaml; |
| 16 | pub mod viz; |
| 17 | |