tractor.dev/toolkit-go@v0.0.0-20241010005851-214d91207d07/duplex/mux/frame/frame.go (about)

     1  // Package frame implements encoding and decoding of qmux message frames.
     2  package frame
     3  
     4  import "io"
     5  
     6  var (
     7  	// Debug can be set to get message frames as they're encoded and decoded
     8  	Debug io.Writer
     9  )