Skip to main content

relay_core_api/
lib.rs

1//! Internal support crate for [relay-core](https://crates.io/crates/relay-core).
2//! Shared data contracts (Flow, Rule, Policy, etc.) used across all relay-core crates.
3//!
4//! **Users should depend on `relay-core` instead** — its public API re-exports
5//! the types defined here under `relay_core_runtime::flow`, `relay_core_runtime::policy`, etc.
6
7pub mod flow;
8pub mod rule;
9pub mod event;
10pub mod policy;
11pub mod modification;
12
13// Placeholder
14pub fn version() -> &'static str {
15    "0.1.0"
16}