relay_event_schema/
lib.rs

1//! Event schema (Error, Transaction, Security) and types for event processing.
2
3#![doc(
4    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
5    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
6)]
7
8extern crate self as relay_event_schema;
9
10pub mod processor;
11pub mod protocol;