1#![warn(missing_docs)]
4#![doc(
5 html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
6 html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
7)]
8
9pub use crate::description::derive_description_for_v2_span;
10pub use crate::name::name_for_attributes;
11pub use crate::op::derive_op_for_v2_span;
12pub use crate::otel_to_sentry_v2::otel_to_sentry_span as otel_to_sentry_span_v2;
13pub use crate::v1_to_v2::span_v1_to_span_v2;
14
15pub use opentelemetry_proto::tonic::trace::v1 as otel_trace;
16
17mod description;
18mod name;
19mod op;
20mod otel_to_sentry_v2;
21mod v1_to_v2;