microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
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 | |
| 12 | pub mod node; |
| 13 | pub mod patch; |
| 14 | pub mod pipeline; |
| 15 | pub mod reexports; |
| 16 | pub mod shell; |
| 17 | pub mod util; |
| 18 | |