docs: add some documentation for QUIC transport

This commit is contained in:
Akash Mondal
2025-09-05 05:41:06 +00:00
parent 09c9709a3e
commit f3976b7d2f
7 changed files with 93 additions and 2 deletions

View File

@ -0,0 +1,6 @@
def test_echo_quic_example():
"""Test that the QUIC echo example can be imported and has required functions."""
from examples.echo import echo_quic
assert hasattr(echo_quic, "main")
assert hasattr(echo_quic, "run")