Skip to main content

Mountain/RPC/Telemetry/
TelemetryService.rs

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