pub trait AuditSink: Send + Sync {
// Required method
fn record(
&self,
record: Value,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + '_>>;
}Expand description
Receives per-tool audit records emitted by tools that opt in.