// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT

package netctx

import (
	
)

// Pipe creates piped pair of Conn.
func () (Conn, Conn) {
	,  := net.Pipe()
	return NewConn(), NewConn()
}