Skip to main content

Mountain/RPC/Telemetry/
TelemetryService.rs

1
2//! OTEL integration handle. Currently a placeholder.
3
4pub struct Struct;
5
6impl Struct {
7	pub fn new() -> Self { Self {} }
8}
9
10impl Default for Struct {
11	fn default() -> Self { Self::new() }
12}