micro/codec/frame.go

7 lines
122 B
Go
Raw Normal View History

package codec
// Frame gives us the ability to define raw data to send over the pipes
type Frame struct {
Data []byte
}