openlatch-provider 0.0.0

Self-service onboarding CLI + runtime daemon for OpenLatch Editors and Providers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Runtime daemon — receives Standard Webhooks v1 HMAC-signed events from
//! `openlatch-platform`, verifies them, proxies to localhost-hosted vendor
//! tool servers, returns HMAC-signed verdicts. See
//! `.claude/rules/openlatch-architecture.md` for the request lifecycle.

pub mod admin;
pub mod admin_token;
pub mod audit_log;
pub mod deadline;
pub mod multi_tool;
pub mod proxy;
pub mod reload;
pub mod replay_cache;
pub mod server;
pub mod verdict;
pub mod webhook;