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 event;
8pub mod flow;
9pub mod flow_query;
10pub mod har;
11pub mod modification;
12pub mod policy;
13pub mod rule;
14
15// Placeholder
16pub fn version() -> &'static str {
17 "0.1.0"
18}