| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | //! Flowey pipelines used by the OpenVMM project |
| 5 | |
| 6 | #![forbid(unsafe_code)] |
| 7 | |
| 8 | fn main() { |
| 9 | flowey_cli::flowey_main::<flowey_hvlite::pipelines::OpenvmmPipelines>( |
| 10 | "flowey_hvlite", |
| 11 | &flowey_hvlite::repo_root(), |
| 12 | ) |
| 13 | } |
| 14 | |