microsoft/openvmm

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
991f47512a09bf18401b10769628d607f3de5497

Branches

Tags

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

Clone

HTTPS

Download ZIP

flowey/flowey_hvlite/src/main.rs

13lines · modecode

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
8fn main() {
9 flowey_cli::flowey_main::<flowey_hvlite::pipelines::OpenvmmPipelines>(
10 "flowey_hvlite",
11 &flowey_hvlite::repo_root(),
12 )
13}
14