flowey_core/
lib.rs

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 util;