shardline-server 1.0.1

HTTP server boundary, runtime, and operator workflows for Shardline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Default retention for processed webhook delivery claims before repair prunes them.
pub const DEFAULT_WEBHOOK_DELIVERY_RETENTION_SECONDS: u64 = 2_592_000;

pub(crate) const WEBHOOK_DELIVERY_FUTURE_SKEW_SECONDS: u64 = 300;

pub(crate) mod classification;
pub(crate) mod orchestrator;
pub(crate) mod reachability;
pub(crate) mod types;

#[cfg(test)]
mod tests;

// Public API re-exports
pub use orchestrator::{run_lifecycle_repair, run_local_lifecycle_repair};
pub use types::{LifecycleRepairOptions, LifecycleRepairReport};