flowey_cli/pipeline_resolver/
mod.rs

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
10pub mod ado_yaml;
11// pub mod bash; // not maintained at the moment
12pub mod common_yaml;
13pub mod direct_run;
14pub mod generic;
15pub mod github_yaml;
16pub mod viz;