relay-core-api 0.1.1

[Internal] Shared data contracts for relay-core. Use `relay-core-runtime` instead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Internal support crate for [relay-core](https://crates.io/crates/relay-core).
//! Shared data contracts (Flow, Rule, Policy, etc.) used across all relay-core crates.
//!
//! **Users should depend on `relay-core` instead** — its public API re-exports
//! the types defined here under `relay_core_runtime::flow`, `relay_core_runtime::policy`, etc.

pub mod flow;
pub mod rule;
pub mod event;
pub mod policy;
pub mod modification;

// Placeholder
pub fn version() -> &'static str {
    "0.1.0"
}