From 6463ba0e5241e3988e645a83c1938bad6e8890fa Mon Sep 17 00:00:00 2001 From: lichon Date: Fri, 14 Nov 2025 16:05:38 +0800 Subject: [PATCH] Update examples/webrtc_dummy.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- examples/webrtc_dummy.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/webrtc_dummy.rs b/examples/webrtc_dummy.rs index cd8d1b0..88ac9be 100644 --- a/examples/webrtc_dummy.rs +++ b/examples/webrtc_dummy.rs @@ -4,6 +4,8 @@ use bytes::BytesMut; use hbb_common::ResultType; +/// Dummy implementation of WebRTCStream used when the `webrtc` feature is disabled. +/// This struct allows the code to compile and run without actual WebRTC functionality. pub struct WebRTCStream { // mock struct }