microsoft/openvmm

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1c83ab4a78b2e45d3c95c722ccfadb06afe9ad65

Branches

Tags

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

Clone

HTTPS

Download ZIP

flowey/flowey_core/src/lib.rs

17lines · 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
10#![expect(missing_docs)]
11
12pub mod node;
13pub mod patch;
14pub mod pipeline;
15pub mod reexports;
16pub mod shell;
17pub mod util;
18