byteor_app_kit/
lib.rs

1#![deny(missing_docs)]
2#![deny(unreachable_pub, rust_2018_idioms)]
3#![forbid(unsafe_code)]
4
5//! Shared helpers for ByteOr enterprise product apps.
6//! This crate is intentionally small and enterprise-only. It exists to keep product binaries
7//! focused while sharing stable wiring logic (policy + stage resolver glue).
8
9/// Shared capability-document types and builders for Enterprise runtimes.
10pub mod capabilities;
11
12/// Helpers for integrating side-effecting action stages (`http_post:*`, `exec:*`).
13pub mod actions;
14
15/// Helpers for reporting runtime heartbeats and snapshots to the control plane.
16pub mod agent;
17
18/// Helpers for verifying governed approval credentials locally.
19pub mod approval;