Merge branch 'libp2p:main' into fix/885-Update-default-Bind-address

This commit is contained in:
yashksaini-coder
2025-09-05 18:14:44 +05:30
committed by GitHub
39 changed files with 9312 additions and 86 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")