about summary refs log tree commit diff
path: root/tvix/tracing/src/propagate/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/tracing/src/propagate/mod.rs')
-rw-r--r--tvix/tracing/src/propagate/mod.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tvix/tracing/src/propagate/mod.rs b/tvix/tracing/src/propagate/mod.rs
new file mode 100644
index 000000000000..2e56a832e5b7
--- /dev/null
+++ b/tvix/tracing/src/propagate/mod.rs
@@ -0,0 +1,8 @@
+#[cfg(feature = "tonic")]
+pub mod tonic;
+
+#[cfg(feature = "reqwest")]
+pub mod reqwest;
+
+#[cfg(feature = "axum")]
+pub mod axum;