microsoft/openvmm

Public

mirrored fromhttps://github.com/microsoft/openvmmAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
95f63b081007752feb24c33a92cb6074bd72a9b5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
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;
17