microsoft/openvmm

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e6a1eca0ac970ac1b75f1b4ea3ba48c126ddd5ea

Branches

Tags

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

Clone

HTTPS

Download ZIP

flowey/flowey_core/src/lib.rs

12lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Core types and traits shared between user-facing and internal flowey code.
5//!
6//! **If you are a flowey node / pipeline author, you should not directly import
7//! this crate!** The crate you should be using is called `flowey`, which only
8//! exports user-facing types / traits.
9
10pub mod node;
11pub mod patch;
12pub mod pipeline;
13